.container {
  width: min(90%, 1200px) !important;
  margin-inline: auto !important;
}

/* =========================================================
   OUR CAMPUS
   ========================================================= */

.campus-section {
  background: #f8fbff;
  padding: 100px 0;
  overflow: hidden;
}

.campus-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.campus-content {
  max-width: 560px;
}

.campus-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1.5px dashed #18b9ed;
  border-radius: 50px;
  color: #079bd0;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.campus-content h2 {
  margin: 0 0 22px;
  color: #17203d;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
}

.campus-content h2 span {
  display: block;
  color: #ef3670;
}

.campus-content p {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

.campus-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding: 14px 25px;
  border-radius: 50px;
  background: #ff3472;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 52, 114, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.campus-btn span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.campus-btn:hover {
  background: #e92866;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 52, 114, 0.25);
}

.campus-btn:hover span {
  transform: translateX(5px);
}

/* Campus Image */

.campus-image {
  position: relative;
}

.campus-image-frame {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(24, 40, 72, 0.13);
}

.campus-image-frame::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  top: -18px;
  right: -18px;
  border-radius: 50%;
  background: rgba(255, 52, 114, 0.12);
  z-index: 0;
}

.campus-image-frame::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: -15px;
  left: -15px;
  border-radius: 20px;
  background: rgba(24, 190, 237, 0.14);
  z-index: 0;
}

.campus-image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 20px;
}

.campus-image-tag {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 11px 17px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.96);
  color: #17203d;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.campus-image-tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;
  border-radius: 50%;

  background: #e9fff6;
  color: #13b981;
  font-size: 12px;
}

/* =========================================================
   OUR CAMPUS — RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {
  .campus-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .campus-content {
    max-width: 700px;
  }

  .campus-image-frame img {
    height: 420px;
  }
}

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

  .campus-container {
    gap: 35px;
  }

  .campus-content h2 {
    font-size: 2.2rem;
  }

  .campus-content p {
    font-size: 15px;
  }

  .campus-image-frame {
    padding: 7px;
    border-radius: 22px;
  }

  .campus-image-frame img {
    height: 300px;
    border-radius: 16px;
  }

  .campus-image-tag {
    left: 20px;
    bottom: 20px;
    padding: 9px 13px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .campus-section {
    padding: 55px 0;
  }

  .campus-content h2 {
    font-size: 1.9rem;
  }

  .campus-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .campus-btn {
    width: 100%;
    justify-content: center;
  }

  .campus-image-frame img {
    height: 250px;
  }

  .campus-image-frame::before {
    width: 55px;
    height: 55px;
    top: -10px;
    right: -10px;
  }

  .campus-image-frame::after {
    width: 45px;
    height: 45px;
    bottom: -8px;
    left: -8px;
  }
}

/* =========================================================
   HOME PAGE — HERO ENHANCEMENT
   ========================================================= */

/* ---------- HERO ROOT ---------- */

.lw-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(98, 199, 176, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 15%,
      rgba(139, 124, 246, 0.13),
      transparent 28%
    ),
    #fff9f2;

  padding: 82px 0 105px;
}

/* ---------- DECORATIVE SHAPES ---------- */

.lw-hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

.lw-hero-shape-one {
  width: 380px;
  height: 380px;

  right: -180px;
  top: -150px;

  background: rgba(255, 107, 95, 0.1);
}

.lw-hero-shape-two {
  width: 260px;
  height: 260px;

  left: -150px;
  bottom: -120px;

  background: rgba(98, 199, 176, 0.13);
}

/* ---------- DOT PATTERN ---------- */

.lw-hero-dots {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 110px;
  height: 90px;

  opacity: 0.45;

  background-image: radial-gradient(#8b7cf6 1.5px, transparent 1.5px);

  background-size: 14px 14px;
}

/* ---------- MAIN GRID ---------- */

.lw-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 70px;
  align-items: center;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.lw-hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

/* ---------- EYEBROW ---------- */

.lw-hero-eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 14px;

  border: 1px solid rgba(255, 107, 95, 0.25);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.72);

  color: #e15b51;

  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 0.4px;

  box-shadow: 0 6px 20px rgba(23, 35, 60, 0.05);

  backdrop-filter: blur(10px);

  animation: lwHeroFadeUp 0.7s ease both;
}

.lw-eyebrow-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ff6b5f;

  box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.12);

  animation: lwPulse 2s ease-in-out infinite;
}

/* ---------- HEADING ---------- */

.lw-hero h1 {
  max-width: 680px;

  margin: 22px 0 20px;

  font-family: var(--font-display);

  font-size: clamp(3.1rem, 6vw, 5.6rem);

  line-height: 0.98;

  letter-spacing: -2px;

  color: #17233c;

  animation: lwHeroFadeUp 0.75s 0.08s ease both;
}

.lw-hero h1 span {
  display: block;

  color: #ff6b5f;

  position: relative;
  width: fit-content;
}

/* Hand-drawn underline */

.lw-hero h1 span::after {
  content: "";

  position: absolute;

  left: 3px;
  bottom: -9px;

  width: 88%;
  height: 8px;

  border-bottom: 3px solid #62c7b0;

  border-radius: 50%;

  transform: rotate(-1deg);
}

/* ---------- DESCRIPTION ---------- */

.lw-hero-description {
  max-width: 570px;

  margin-bottom: 30px;

  color: #5b667b;

  font-size: 1.08rem;

  line-height: 1.8;

  animation: lwHeroFadeUp 0.75s 0.16s ease both;
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */

.lw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;

  animation: lwHeroFadeUp 0.75s 0.24s ease both;
}

.lw-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 0 22px;

  border-radius: 14px;

  font-family: var(--font-body);

  font-size: 0.95rem;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;

  position: relative;
  overflow: hidden;
}

.lw-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -110%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.55s ease;
}

.lw-btn:hover::before {
  left: 130%;
}

.lw-btn:hover {
  transform: translateY(-4px);
}

/* Primary */

.lw-btn-primary {
  background: #ff6b5f;
  color: #ffffff;

  box-shadow: 0 12px 28px rgba(255, 107, 95, 0.27);
}

.lw-btn-primary:hover {
  background: #eb5b50;
  color: #ffffff;

  box-shadow: 0 16px 34px rgba(255, 107, 95, 0.34);
}

.lw-btn-primary i {
  transition: transform 0.25s ease;
}

.lw-btn-primary:hover i {
  transform: translateX(4px);
}

/* Secondary */

.lw-btn-secondary {
  background: #ffffff;

  color: #17233c;

  border: 1px solid #dce2e8;

  box-shadow: 0 7px 20px rgba(23, 35, 60, 0.06);
}

.lw-btn-secondary:hover {
  color: #ff6b5f;

  border-color: rgba(255, 107, 95, 0.35);

  box-shadow: 0 12px 28px rgba(23, 35, 60, 0.1);
}

.lw-btn-secondary i {
  font-size: 0.82rem;

  transition: transform 0.25s ease;
}

.lw-btn-secondary:hover i {
  transform: translate(3px, -3px);
}

/* =========================================================
   HERO TRUST POINTS
   ========================================================= */

.lw-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;

  margin-top: 34px;

  animation: lwHeroFadeUp 0.75s 0.32s ease both;
}

.lw-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #445066;

  font-size: 0.85rem;
  font-weight: 800;
}

.lw-trust-icon {
  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.14);

  color: #2fa58d;

  font-size: 0.76rem;
}

.lw-trust-highlight {
  color: #e15b51;
}

.lw-trust-highlight .lw-trust-icon {
  background: rgba(255, 107, 95, 0.12);

  color: #ff6b5f;
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.lw-hero-visual {
  position: relative;

  min-height: 530px;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: lwHeroImageIn 0.9s 0.18s ease both;
}

.lw-hero-image-wrap {
  position: relative;

  width: min(100%, 510px);

  z-index: 2;
}

/* Colored offset layer */

.lw-image-backdrop {
  position: absolute;

  inset: 20px -16px -18px 18px;

  background: #62c7b0;

  border-radius: 38px 70px 40px 60px;

  transform: rotate(3deg);

  opacity: 0.95;

  transition: transform 0.5s ease;
}

.lw-hero-image-wrap:hover .lw-image-backdrop {
  transform: rotate(5deg) translateY(5px);
}

/* Image */

.lw-hero-image {
  position: relative;

  width: 100%;
  height: 515px;

  object-fit: cover;

  border-radius: 38px 72px 38px 72px;

  border: 8px solid #ffffff;

  box-shadow: 0 28px 60px rgba(23, 35, 60, 0.17);

  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease;

  z-index: 2;
}

.lw-hero-image-wrap:hover .lw-hero-image {
  transform: translateY(-7px);

  box-shadow: 0 35px 70px rgba(23, 35, 60, 0.22);
}

/* Orange/coral accent */

.lw-image-accent {
  position: absolute;

  width: 90px;
  height: 90px;

  right: -35px;
  top: 55px;

  border-radius: 28px;

  background: #ff6b5f;

  transform: rotate(14deg);

  z-index: 1;

  opacity: 0.9;
}

/* =========================================================
   FLOATING CARDS
   ========================================================= */

.lw-floating-card {
  position: absolute;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 13px 16px;

  min-width: 215px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-radius: 17px;

  box-shadow: 0 18px 40px rgba(23, 35, 60, 0.13);

  backdrop-filter: blur(14px);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-floating-card:hover {
  box-shadow: 0 24px 50px rgba(23, 35, 60, 0.18);
}

.lw-floating-top {
  left: -45px;
  top: 62px;

  animation: lwFloatingTop 4.2s ease-in-out infinite;
}

.lw-floating-bottom {
  right: -35px;
  bottom: 58px;

  animation: lwFloatingBottom 4.8s ease-in-out infinite;
}

.lw-floating-card small {
  display: block;

  color: #788398;

  font-size: 0.68rem;
  font-weight: 700;

  margin-bottom: 2px;
}

.lw-floating-card strong {
  display: block;

  color: #17233c;

  font-size: 0.82rem;
  font-weight: 800;

  line-height: 1.25;
}

.lw-floating-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 1rem;
}

.lw-icon-mint {
  background: #e8f8f4;
  color: #2fa58d;
}

.lw-icon-coral {
  background: #fff0ee;
  color: #ff6b5f;
}

/* =========================================================
   MINI BADGE
   ========================================================= */

.lw-hero-mini-badge {
  position: absolute;

  left: 5px;
  bottom: 20px;

  z-index: 6;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 13px;

  background: #17233c;
  color: #ffffff;

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 800;

  box-shadow: 0 12px 25px rgba(23, 35, 60, 0.22);

  animation: lwFloatingMini 3.5s ease-in-out infinite;
}

.lw-hero-mini-badge i {
  color: #ffd166;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes lwHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes lwHeroImageIn {
  from {
    opacity: 0;
    transform: translateX(35px) scale(0.97);
  }

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

@keyframes lwFloatingTop {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes lwFloatingBottom {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(9px) rotate(-1deg);
  }
}

@keyframes lwFloatingMini {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes lwPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* =========================================================
   HOME PAGE — HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .lw-hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);

    gap: 45px;
  }

  .lw-hero h1 {
    font-size: clamp(2.9rem, 5.5vw, 4.4rem);
  }

  .lw-hero-image {
    height: 470px;
  }

  .lw-hero-visual {
    min-height: 500px;
  }

  .lw-floating-top {
    left: -20px;
  }

  .lw-floating-bottom {
    right: -18px;
  }
}

@media (max-width: 900px) {
  .lw-hero {
    padding: 65px 0 90px;
  }

  .lw-hero-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .lw-hero-content {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .lw-hero-eyebrow {
    margin-inline: auto;
  }

  .lw-hero h1 {
    margin-inline: auto;
  }

  .lw-hero-description {
    margin-inline: auto;
  }

  .lw-hero-actions {
    justify-content: center;
  }

  .lw-hero-trust {
    justify-content: center;
  }

  .lw-hero-visual {
    width: min(100%, 560px);
    min-height: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .lw-hero {
    min-height: auto;

    padding: 48px 0 75px;
  }

  .lw-hero-container {
    gap: 48px;
  }

  .lw-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);

    letter-spacing: -1.4px;

    line-height: 1;
  }

  .lw-hero h1 span::after {
    height: 5px;
    bottom: -6px;
  }

  .lw-hero-description {
    font-size: 0.98rem;

    line-height: 1.7;

    margin-bottom: 24px;
  }

  .lw-hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .lw-btn {
    width: 100%;

    min-height: 50px;
  }

  .lw-hero-trust {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 28px;
  }

  .lw-trust-item {
    justify-content: center;

    padding: 9px 7px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.62);

    border: 1px solid rgba(23, 35, 60, 0.06);

    font-size: 0.76rem;
  }

  .lw-trust-highlight {
    grid-column: 1 / -1;
  }

  .lw-hero-visual {
    min-height: 390px;

    width: 100%;
  }

  .lw-hero-image-wrap {
    width: calc(100% - 28px);
  }

  .lw-hero-image {
    height: 390px;

    border-width: 6px;

    border-radius: 28px 48px 28px 48px;
  }

  .lw-image-backdrop {
    inset: 13px -9px -11px 10px;

    border-radius: 30px 48px 28px 45px;
  }

  .lw-image-accent {
    width: 55px;
    height: 55px;

    right: -18px;
    top: 30px;

    border-radius: 16px;
  }

  .lw-floating-card {
    min-width: auto;

    max-width: 185px;

    padding: 10px;

    gap: 9px;

    border-radius: 13px;
  }

  .lw-floating-top {
    left: -3px;
    top: 28px;
  }

  .lw-floating-bottom {
    right: -3px;
    bottom: 38px;
  }

  .lw-floating-icon {
    width: 35px;
    height: 35px;

    flex-basis: 35px;

    border-radius: 10px;

    font-size: 0.85rem;
  }

  .lw-floating-card small {
    font-size: 0.59rem;
  }

  .lw-floating-card strong {
    font-size: 0.68rem;
  }

  .lw-hero-mini-badge {
    left: 2px;
    bottom: 5px;

    font-size: 0.63rem;

    padding: 7px 10px;
  }

  .lw-hero-dots {
    right: 2%;
    bottom: 4%;

    transform: scale(0.7);
  }
}

/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .lw-hero *,
  .lw-hero *::before,
  .lw-hero *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   HOME PAGE — OUR CORE OFFERINGS
   ========================================================= */

.lw-programs {
  position: relative;
  overflow: hidden;

  background: #ffffff;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */

.lw-programs-header {
  max-width: 720px;
  margin: 0 auto 52px;

  text-align: center;
}

.lw-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 16px;

  color: #ff6b5f;

  font-size: 0.78rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.lw-section-kicker span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #62c7b0;

  box-shadow: 0 0 0 5px rgba(98, 199, 176, 0.12);
}

.lw-programs-header h2 {
  margin: 0 0 16px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(2.3rem, 4vw, 3.65rem);

  line-height: 1.05;

  letter-spacing: -1.4px;
}

.lw-programs-header h2 em {
  color: #ff6b5f;

  font-style: normal;
}

.lw-programs-header p {
  max-width: 650px;

  margin: 0 auto;

  color: #6b7588;

  font-size: 1rem;

  line-height: 1.75;
}

/* =========================================================
   PROGRAM GRID
   ========================================================= */

.lw-program-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  align-items: stretch;
}

/* =========================================================
   PROGRAM CARD
   ========================================================= */

.lw-program-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e7eaf0;

  border-radius: 28px;

  box-shadow: 0 10px 30px rgba(23, 35, 60, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lw-program-card:hover {
  transform: translateY(-9px);

  box-shadow: 0 25px 55px rgba(23, 35, 60, 0.13);
}

/* Colored top accent */

.lw-program-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 4px;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s ease;

  z-index: 10;
}

.lw-program-card:hover::before {
  transform: scaleX(1);
}

.lw-program-preschool::before {
  background: #ff6b5f;
}

.lw-program-daycare::before {
  background: #62c7b0;
}

.lw-program-activity::before {
  background: #8b7cf6;
}

/* =========================================================
   PROGRAM IMAGE
   ========================================================= */

.lw-program-image {
  position: relative;

  height: 245px;

  overflow: hidden;

  background: #edf0f5;
}

.lw-program-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}

.lw-program-card:hover .lw-program-image img {
  transform: scale(1.075);

  filter: saturate(1.05);
}

/* Image overlay */

.lw-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(23, 35, 60, 0.02) 20%,
    rgba(23, 35, 60, 0.55) 100%
  );

  pointer-events: none;
}

/* =========================================================
   PRICE
   ========================================================= */

.lw-price {
  position: absolute;

  left: 17px;
  bottom: 16px;

  z-index: 3;

  padding: 8px 12px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.95);

  color: #17233c;

  font-size: 0.78rem;
  font-weight: 900;

  box-shadow: 0 7px 20px rgba(23, 35, 60, 0.12);

  backdrop-filter: blur(8px);
}

/* =========================================================
   NUMBER
   ========================================================= */

.lw-program-number {
  position: absolute;

  right: 17px;
  top: 17px;

  z-index: 3;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(23, 35, 60, 0.78);

  color: #ffffff;

  font-family: var(--font-display);

  font-size: 0.75rem;
  font-weight: 800;

  backdrop-filter: blur(8px);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.lw-program-card:hover .lw-program-number {
  transform: rotate(8deg) scale(1.08);
}

/* =========================================================
   AGE BADGE
   ========================================================= */

.lw-age-badge {
  position: absolute;

  right: 17px;
  bottom: 16px;

  z-index: 4;

  padding: 8px 12px;

  border-radius: 999px;

  background: #62c7b0;

  color: #102f2a;

  font-size: 0.72rem;
  font-weight: 900;

  box-shadow: 0 8px 18px rgba(23, 35, 60, 0.12);
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.lw-program-content {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 27px 27px 25px;
}

.lw-program-label {
  align-self: flex-start;

  display: inline-flex;

  padding: 6px 11px;

  margin-bottom: 13px;

  border-radius: 999px;

  background: #fff0ee;

  color: #e15b51;

  font-size: 0.7rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.lw-program-daycare .lw-program-label {
  background: #e9f8f4;

  color: #278e7b;
}

.lw-program-activity .lw-program-label {
  background: #efedff;

  color: #7164d9;
}

/* =========================================================
   CARD HEADING
   ========================================================= */

.lw-program-content h3 {
  margin: 0 0 10px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: 1.48rem;

  line-height: 1.2;

  letter-spacing: -0.4px;

  transition: color 0.25s ease;
}

.lw-program-card:hover .lw-program-content h3 {
  color: #ff6b5f;
}

.lw-program-daycare:hover .lw-program-content h3 {
  color: #2fa58d;
}

.lw-program-activity:hover .lw-program-content h3 {
  color: #7568df;
}

/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.lw-program-content > p {
  margin: 0;

  color: #697487;

  font-size: 0.91rem;

  line-height: 1.7;
}

/* =========================================================
   FEATURE LIST
   ========================================================= */

.lw-feature-list {
  display: flex;
  flex-direction: column;

  gap: 11px;

  margin: 22px 0 25px;

  padding: 0;

  list-style: none;
}

.lw-feature-list li {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  color: #4e5a6d;

  font-size: 0.81rem;

  line-height: 1.45;
}

.lw-check {
  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 1px;

  border-radius: 50%;

  background: #eaf8f5;

  color: #2fa58d;

  font-size: 0.61rem;
}

.lw-program-preschool .lw-check {
  background: #fff0ee;

  color: #ff6b5f;
}

.lw-program-activity .lw-check {
  background: #efedff;

  color: #7568df;
}

/* =========================================================
   PROGRAM LINK
   ========================================================= */

.lw-program-link {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-top: auto;

  padding-top: 17px;

  border-top: 1px solid #edf0f4;

  color: #17233c;

  font-size: 0.84rem;
  font-weight: 900;

  transition: color 0.25s ease;
}

.lw-program-link i {
  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #17233c;

  color: #ffffff;

  font-size: 0.7rem;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.lw-program-link:hover {
  color: #ff6b5f;
}

.lw-program-link:hover i {
  transform: translateX(5px);

  background: #ff6b5f;
}

.lw-program-daycare .lw-program-link:hover {
  color: #2fa58d;
}

.lw-program-daycare .lw-program-link:hover i {
  background: #2fa58d;
}

.lw-program-activity .lw-program-link:hover {
  color: #7568df;
}

.lw-program-activity .lw-program-link:hover i {
  background: #7568df;
}

/* =========================================================
   HOME PAGE — PROGRAMS RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
  .lw-program-grid {
    gap: 18px;
  }

  .lw-program-content {
    padding: 23px 22px;
  }

  .lw-program-content h3 {
    font-size: 1.3rem;
  }

  .lw-program-image {
    height: 220px;
  }
}

@media (max-width: 820px) {
  .lw-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lw-program-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 9px);

    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .lw-programs-header {
    margin-bottom: 35px;
  }

  .lw-programs-header h2 {
    font-size: 2.25rem;

    letter-spacing: -0.8px;
  }

  .lw-programs-header p {
    font-size: 0.92rem;

    line-height: 1.65;
  }

  .lw-program-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .lw-program-card:last-child {
    grid-column: auto;

    width: 100%;
  }

  .lw-program-image {
    height: 225px;
  }

  .lw-program-content {
    padding: 23px 20px 21px;
  }

  .lw-program-content h3 {
    font-size: 1.35rem;
  }

  .lw-feature-list {
    gap: 9px;

    margin-top: 19px;
    margin-bottom: 22px;
  }

  .lw-feature-list li {
    font-size: 0.78rem;
  }
}

/* =========================================================
   HOME PAGE — PROGRAMS REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .lw-program-card,
  .lw-program-card *,
  .lw-program-card::before {
    transition: none !important;
  }
}

/* =========================================================
   HOME PAGE — FREE TRIAL CTA
   ========================================================= */

.lw-trial {
  position: relative;

  overflow: hidden;

  padding: 30px 0 80px;

  background: #ffffff;
}

/* =========================================================
   DECORATIVE SHAPES
   ========================================================= */

.lw-trial-decoration {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-trial-decoration-one {
  width: 260px;
  height: 260px;

  left: -150px;
  top: -120px;

  background: rgba(98, 199, 176, 0.1);
}

.lw-trial-decoration-two {
  width: 210px;
  height: 210px;

  right: -120px;
  bottom: -100px;

  background: rgba(255, 107, 95, 0.09);
}

/* =========================================================
   MAIN CTA CARD
   ========================================================= */

.lw-trial-card {
  position: relative;

  overflow: hidden;

  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(280px, 0.6fr);

  gap: 35px;

  align-items: center;

  padding: 48px 52px;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(139, 124, 246, 0.2),
      transparent 30%
    ),
    #17233c;

  box-shadow: 0 25px 55px rgba(23, 35, 60, 0.16);

  isolation: isolate;
}

/* Subtle grid */

.lw-trial-card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  opacity: 0.08;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);

  background-size: 34px 34px;

  mask-image: linear-gradient(90deg, transparent, black 45%, black);
}

/* =========================================================
   LABEL
   ========================================================= */

.lw-trial-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 14px;

  color: #62c7b0;

  font-size: 0.76rem;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 1.1px;
}

.lw-trial-label i {
  font-size: 0.8rem;
}

/* =========================================================
   HEADING
   ========================================================= */

.lw-trial-content h2 {
  margin: 0 0 13px;

  color: #ffffff;

  font-family: var(--font-display);

  font-size: clamp(2rem, 4vw, 3.3rem);

  line-height: 1.04;

  letter-spacing: -1px;
}

.lw-trial-content h2 span {
  color: #ff6b5f;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.lw-trial-content > p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.96rem;

  line-height: 1.75;
}

/* =========================================================
   TRIAL POINTS
   ========================================================= */

.lw-trial-points {
  display: flex;

  flex-wrap: wrap;

  gap: 12px 22px;

  margin-top: 25px;
}

.lw-trial-point {
  display: flex;

  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.78rem;

  font-weight: 700;
}

.lw-trial-point span {
  width: 20px;
  height: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 20px;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.16);

  color: #62c7b0;

  font-size: 0.58rem;
}

/* =========================================================
   RIGHT ACTION PANEL
   ========================================================= */

.lw-trial-action {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding: 27px;

  border: 1px solid rgba(255, 255, 255, 0.11);

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(12px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.lw-trial-action:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(98, 199, 176, 0.3);
}

/* =========================================================
   ACTION ICON
   ========================================================= */

.lw-trial-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 17px;

  border-radius: 15px;

  background: #ff6b5f;

  color: #ffffff;

  box-shadow: 0 10px 25px rgba(255, 107, 95, 0.25);

  animation: lwTrialSparkle 2.8s ease-in-out infinite;
}

/* =========================================================
   ACTION TEXT
   ========================================================= */

.lw-trial-action-text {
  margin-bottom: 20px;
}

.lw-trial-action-text strong {
  display: block;

  margin-bottom: 5px;

  color: #ffffff;

  font-family: var(--font-display);

  font-size: 1.12rem;
}

.lw-trial-action-text small {
  display: block;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.76rem;

  line-height: 1.5;
}

/* =========================================================
   CTA BUTTON
   ========================================================= */

.lw-trial-btn {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding: 13px 15px;

  border-radius: 13px;

  background: #ffffff;

  color: #17233c;

  font-size: 0.8rem;

  font-weight: 900;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.lw-trial-btn i {
  transition: transform 0.25s ease;
}

.lw-trial-btn:hover {
  background: #62c7b0;

  color: #102f2a;

  transform: translateY(-2px);
}

.lw-trial-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes lwTrialSparkle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(7deg) scale(1.06);
  }
}

/* =========================================================
   HOME PAGE — FREE TRIAL RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .lw-trial-card {
    grid-template-columns: 1fr;

    padding: 40px;
  }

  .lw-trial-action {
    max-width: 500px;

    width: 100%;
  }
}

@media (max-width: 600px) {
  .lw-trial {
    padding: 15px 0 60px;
  }

  .lw-trial-card {
    padding: 30px 22px;

    border-radius: 24px;

    gap: 28px;
  }

  .lw-trial-content h2 {
    font-size: 2.15rem;
  }

  .lw-trial-content > p {
    font-size: 0.88rem;

    line-height: 1.65;
  }

  .lw-trial-points {
    flex-direction: column;

    gap: 10px;

    margin-top: 21px;
  }

  .lw-trial-point {
    font-size: 0.74rem;
  }

  .lw-trial-action {
    padding: 21px;

    border-radius: 18px;
  }

  .lw-trial-btn {
    min-height: 46px;
  }
}

/* =========================================================
   HOME PAGE — FREE TRIAL REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .lw-trial *,
  .lw-trial *::before,
  .lw-trial *::after {
    animation: none !important;

    transition: none !important;
  }
}

/* =========================================================
   HOME PAGE — LITTLE WINGS DIFFERENCE
   ========================================================= */

.lw-trust-section {
  position: relative;

  overflow: hidden;

  padding: 105px 0;

  background: #fff9f2;
}

/* =========================================================
   BACKGROUND DECORATIONS
   ========================================================= */

.lw-trust-bg-shape {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-trust-bg-one {
  width: 420px;
  height: 420px;

  left: -250px;
  top: 80px;

  background: rgba(98, 199, 176, 0.1);
}

.lw-trust-bg-two {
  width: 330px;
  height: 330px;

  right: -190px;
  bottom: -100px;

  background: rgba(139, 124, 246, 0.09);
}

/* =========================================================
   HEADER
   ========================================================= */

.lw-trust-header {
  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}

.lw-trust-header h2 {
  margin: 0 0 16px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(2.35rem, 4vw, 3.7rem);

  line-height: 1.05;

  letter-spacing: -1.4px;
}

.lw-trust-header h2 em {
  color: #ff6b5f;

  font-style: normal;
}

.lw-trust-header p {
  max-width: 620px;

  margin: auto;

  color: #687488;

  font-size: 0.98rem;

  line-height: 1.75;
}

/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.lw-trust-layout {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.75fr)
    minmax(0, 1.7fr);

  gap: 25px;

  align-items: stretch;
}

/* =========================================================
   FEATURE PANEL
   ========================================================= */

.lw-trust-feature {
  position: relative;

  overflow: hidden;

  min-height: 100%;

  display: flex;
  flex-direction: column;

  padding: 42px 35px;

  border-radius: 30px;

  background: #17233c;

  color: #ffffff;

  box-shadow: 0 25px 50px rgba(23, 35, 60, 0.15);

  isolation: isolate;
}

.lw-trust-feature::before {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  right: -110px;
  top: -90px;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.13);
}

.lw-trust-feature::after {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  left: -80px;
  bottom: -75px;

  border-radius: 50%;

  background: rgba(255, 107, 95, 0.13);
}

/* =========================================================
   FEATURE TOP
   ========================================================= */

.lw-trust-feature-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 11px;

  margin-bottom: 34px;
}

.lw-trust-feature-top > span {
  color: rgba(255, 255, 255, 0.55);

  font-size: 0.68rem;

  font-weight: 900;

  letter-spacing: 1.2px;
}

.lw-trust-feature-icon {
  width: 43px;
  height: 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #ff6b5f;

  color: #ffffff;

  box-shadow: 0 10px 25px rgba(255, 107, 95, 0.25);

  transition: transform 0.3s ease;
}

.lw-trust-feature:hover .lw-trust-feature-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* =========================================================
   FEATURE HEADING
   ========================================================= */

.lw-trust-feature h3 {
  position: relative;

  z-index: 2;

  max-width: 330px;

  margin: 0 0 17px;

  font-family: var(--font-display);

  font-size: clamp(2rem, 3vw, 2.8rem);

  line-height: 1.05;

  letter-spacing: -1px;
}

.lw-trust-feature h3 span {
  color: #62c7b0;
}

.lw-trust-feature > p {
  position: relative;

  z-index: 2;

  max-width: 340px;

  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.86rem;

  line-height: 1.75;
}

/* =========================================================
   STATS
   ========================================================= */

.lw-trust-stat-row {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: auto;

  padding-top: 40px;
}

.lw-trust-stat {
  padding: 17px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.045);
}

.lw-trust-stat strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-family: var(--font-display);

  font-size: 1.4rem;
}

.lw-trust-stat span {
  color: rgba(255, 255, 255, 0.48);

  font-size: 0.65rem;

  font-weight: 700;
}

/* =========================================================
   DECORATIVE DOTS
   ========================================================= */

.lw-trust-decoration {
  position: absolute;

  right: 28px;
  bottom: 28px;

  display: flex;

  gap: 6px;

  z-index: 3;
}

.lw-trust-decoration span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #62c7b0;

  opacity: 0.7;
}

/* =========================================================
   TRUST CARD GRID
   ========================================================= */

.lw-trust-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

/* =========================================================
   TRUST CARD
   ========================================================= */

.lw-trust-card {
  position: relative;

  min-width: 0;

  display: grid;

  grid-template-columns: auto 1fr;

  column-gap: 14px;

  align-content: center;

  padding: 22px;

  border: 1px solid #e7e6e1;

  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 8px 22px rgba(23, 35, 60, 0.045);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lw-trust-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 107, 95, 0.25);

  box-shadow: 0 18px 35px rgba(23, 35, 60, 0.1);
}

/* =========================================================
   NUMBER
   ========================================================= */

.lw-trust-card-number {
  position: absolute;

  top: 14px;
  right: 16px;

  color: #dfe3e9;

  font-family: var(--font-display);

  font-size: 0.68rem;

  font-weight: 900;
}

/* =========================================================
   CARD ICON
   ========================================================= */

.lw-trust-card-icon {
  width: 43px;
  height: 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  grid-row: span 2;

  border-radius: 13px;

  font-size: 0.92rem;

  transition: transform 0.3s ease;
}

.lw-trust-card:hover .lw-trust-card-icon {
  transform: scale(1.08) rotate(-5deg);
}

/* Icon variants */

.icon-coral {
  background: #fff0ee;

  color: #ff6b5f;
}

.icon-mint {
  background: #e8f8f4;

  color: #2fa58d;
}

.icon-purple {
  background: #efedff;

  color: #7568df;
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.lw-trust-card h3 {
  margin: 0 0 5px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: 1rem;

  line-height: 1.25;
}

.lw-trust-card p {
  max-width: 310px;

  margin: 0;

  color: #758094;

  font-size: 0.74rem;

  line-height: 1.55;
}

/* =========================================================
   ARROW
   ========================================================= */

.lw-trust-arrow {
  position: absolute;

  right: 16px;
  bottom: 15px;

  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f3f5f7;

  color: #17233c;

  font-size: 0.58rem;

  opacity: 0;

  transform: translate(-4px, 4px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.lw-trust-card:hover .lw-trust-arrow {
  opacity: 1;

  transform: translate(0, 0);

  background: #ff6b5f;

  color: #ffffff;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .lw-trust-layout {
    grid-template-columns: 1fr;
  }

  .lw-trust-feature {
    min-height: 390px;
  }

  .lw-trust-feature > p {
    max-width: 600px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {
  .lw-trust-section {
    padding: 75px 0;
  }

  .lw-trust-header {
    margin-bottom: 38px;
  }

  .lw-trust-header h2 {
    font-size: 2.25rem;

    letter-spacing: -0.8px;
  }

  .lw-trust-header p {
    font-size: 0.9rem;
  }

  .lw-trust-feature {
    min-height: 390px;

    padding: 30px 24px;

    border-radius: 24px;
  }

  .lw-trust-feature-top {
    margin-bottom: 28px;
  }

  .lw-trust-feature h3 {
    font-size: 2.15rem;
  }

  .lw-trust-stat-row {
    padding-top: 30px;
  }

  .lw-trust-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .lw-trust-card {
    padding: 19px;

    min-height: 120px;
  }

  .lw-trust-card h3 {
    font-size: 0.96rem;
  }

  .lw-trust-card p {
    font-size: 0.73rem;
  }

  .lw-trust-arrow {
    opacity: 1;

    transform: none;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .lw-trust-section *,
  .lw-trust-section *::before,
  .lw-trust-section *::after {
    animation: none !important;

    transition: none !important;
  }
}

/* =========================================================
   HOME PAGE — OUR CAMPUS
   ========================================================= */

.lw-campus {
  position: relative;

  overflow: hidden;

  padding: 105px 0;

  background: #ffffff;
}

/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.lw-campus-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-campus-orb-one {
  width: 330px;
  height: 330px;

  left: -190px;
  top: 80px;

  background: rgba(98, 199, 176, 0.1);
}

.lw-campus-orb-two {
  width: 280px;
  height: 280px;

  right: -150px;
  bottom: -100px;

  background: rgba(255, 107, 95, 0.08);
}

/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.lw-campus-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 80px;

  align-items: center;
}

/* =========================================================
   CAMPUS VISUAL
   ========================================================= */

.lw-campus-visual {
  position: relative;

  min-height: 570px;

  display: flex;

  align-items: center;
}

.lw-campus-image-frame {
  position: relative;

  width: calc(100% - 35px);

  height: 525px;

  overflow: hidden;

  border-radius: 32px 75px 32px 65px;

  background: #edf0f5;

  box-shadow: 0 28px 60px rgba(23, 35, 60, 0.15);

  z-index: 2;
}

.lw-campus-image-frame::before {
  content: "";

  position: absolute;

  inset: 0;

  border: 7px solid rgba(255, 255, 255, 0.9);

  border-radius: inherit;

  z-index: 3;

  pointer-events: none;
}

.lw-campus-image-frame img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.lw-campus-image-frame:hover img {
  transform: scale(1.06);

  filter: saturate(1.06);
}

/* =========================================================
   IMAGE SHADE
   ========================================================= */

.lw-campus-image-shade {
  position: absolute;

  inset: 0;

  z-index: 2;

  background: linear-gradient(180deg, transparent 50%, rgba(23, 35, 60, 0.45));

  pointer-events: none;
}

/* =========================================================
   OFFSET BACKGROUND
   ========================================================= */

.lw-campus-image-frame::after {
  content: "";

  position: absolute;

  left: -15px;
  bottom: -15px;

  width: 100%;
  height: 100%;

  border-radius: inherit;

  background: #62c7b0;

  z-index: -1;

  transform: rotate(-3deg);
}

/* =========================================================
   LOCATION CARD
   ========================================================= */

.lw-campus-location {
  position: absolute;

  right: 0;
  top: 80px;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 11px;

  min-width: 220px;

  padding: 13px 15px;

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-radius: 17px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow: 0 18px 40px rgba(23, 35, 60, 0.14);

  backdrop-filter: blur(14px);

  animation: lwCampusFloat 4s ease-in-out infinite;
}

.lw-campus-location-icon {
  width: 41px;
  height: 41px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 41px;

  border-radius: 12px;

  background: #fff0ee;

  color: #ff6b5f;
}

.lw-campus-location small {
  display: block;

  margin-bottom: 2px;

  color: #8992a1;

  font-size: 0.64rem;

  font-weight: 700;
}

.lw-campus-location strong {
  display: block;

  color: #17233c;

  font-size: 0.76rem;

  font-weight: 900;
}

/* =========================================================
   IMAGE LABEL
   ========================================================= */

.lw-campus-image-label {
  position: absolute;

  left: 25px;
  bottom: 48px;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 9px 13px;

  border-radius: 999px;

  background: #17233c;

  color: #ffffff;

  font-size: 0.7rem;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.8px;
}

.lw-campus-image-label span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #62c7b0;
}

/* =========================================================
   DECORATIVE DOTS
   ========================================================= */

.lw-campus-dots {
  position: absolute;

  right: -4px;
  bottom: 65px;

  z-index: 1;

  display: grid;

  grid-template-columns: repeat(3, 7px);

  gap: 8px;
}

.lw-campus-dots i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff6b5f;

  opacity: 0.65;
}

/* =========================================================
   CONTENT
   ========================================================= */

.lw-campus-content {
  max-width: 570px;
}

.lw-campus-content h2 {
  margin: 0 0 18px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(2.35rem, 4vw, 3.65rem);

  line-height: 1.04;

  letter-spacing: -1.3px;
}

.lw-campus-content h2 em {
  display: inline-block;

  color: #ff6b5f;

  font-style: normal;
}

.lw-campus-intro {
  max-width: 520px;

  margin: 0 0 30px;

  color: #687488;

  font-size: 0.98rem;

  line-height: 1.8;
}

/* =========================================================
   CAMPUS HIGHLIGHTS
   ========================================================= */

.lw-campus-highlights {
  display: flex;

  flex-direction: column;

  gap: 13px;
}

.lw-campus-highlight {
  display: grid;

  grid-template-columns: auto 1fr;

  gap: 14px;

  padding: 17px;

  border: 1px solid #e9ebef;

  border-radius: 17px;

  background: #ffffff;

  box-shadow: 0 7px 20px rgba(23, 35, 60, 0.035);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-campus-highlight:hover {
  transform: translateX(6px);

  border-color: rgba(98, 199, 176, 0.35);

  box-shadow: 0 14px 28px rgba(23, 35, 60, 0.08);
}

.lw-campus-highlight-icon {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  font-size: 0.9rem;

  transition: transform 0.3s ease;
}

.lw-campus-highlight:hover .lw-campus-highlight-icon {
  transform: rotate(-6deg) scale(1.08);
}

.lw-campus-highlight h3 {
  margin: 0 0 4px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: 0.93rem;
}

.lw-campus-highlight p {
  margin: 0;

  color: #778194;

  font-size: 0.75rem;

  line-height: 1.55;
}

/* =========================================================
   CAMPUS CTA
   ========================================================= */

.lw-campus-cta {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 30px;

  padding: 13px 17px;

  border-radius: 13px;

  background: #17233c;

  color: #ffffff;

  font-size: 0.8rem;

  font-weight: 900;

  box-shadow: 0 10px 25px rgba(23, 35, 60, 0.14);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.lw-campus-cta i {
  width: 29px;
  height: 29px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ff6b5f;

  transition: transform 0.25s ease;
}

.lw-campus-cta:hover {
  transform: translateY(-3px);

  background: #ff6b5f;

  color: #ffffff;

  box-shadow: 0 15px 30px rgba(255, 107, 95, 0.22);
}

.lw-campus-cta:hover i {
  background: #ffffff;

  color: #ff6b5f;

  transform: translateX(4px);
}

/* =========================================================
   CAMPUS ANIMATION
   ========================================================= */

@keyframes lwCampusFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =========================================================
   HOME PAGE — CAMPUS RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
  .lw-campus {
    padding: 85px 0;
  }

  .lw-campus-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .lw-campus-visual {
    width: min(100%, 650px);

    margin-inline: auto;
  }

  .lw-campus-content {
    max-width: 700px;

    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .lw-campus {
    padding: 70px 0;
  }

  .lw-campus-layout {
    gap: 42px;
  }

  .lw-campus-visual {
    min-height: 405px;
  }

  .lw-campus-image-frame {
    width: calc(100% - 18px);

    height: 380px;

    border-radius: 25px 48px 25px 43px;
  }

  .lw-campus-image-frame::before {
    border-width: 5px;
  }

  .lw-campus-location {
    right: -2px;
    top: 40px;

    min-width: 185px;

    padding: 10px 11px;

    border-radius: 13px;
  }

  .lw-campus-location-icon {
    width: 35px;
    height: 35px;

    flex-basis: 35px;

    border-radius: 10px;
  }

  .lw-campus-location strong {
    font-size: 0.67rem;
  }

  .lw-campus-location small {
    font-size: 0.57rem;
  }

  .lw-campus-image-label {
    left: 15px;
    bottom: 25px;

    padding: 8px 11px;

    font-size: 0.61rem;
  }

  .lw-campus-dots {
    right: -2px;
    bottom: 35px;

    transform: scale(0.75);
  }

  .lw-campus-content h2 {
    font-size: 2.25rem;

    letter-spacing: -0.8px;
  }

  .lw-campus-intro {
    font-size: 0.9rem;

    line-height: 1.7;
  }

  .lw-campus-highlight {
    padding: 15px;

    gap: 11px;
  }

  .lw-campus-highlight-icon {
    width: 37px;
    height: 37px;

    border-radius: 10px;
  }

  .lw-campus-highlight h3 {
    font-size: 0.86rem;
  }

  .lw-campus-highlight p {
    font-size: 0.7rem;
  }

  .lw-campus-cta {
    width: 100%;

    justify-content: space-between;

    margin-top: 25px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .lw-campus *,
  .lw-campus *::before,
  .lw-campus *::after {
    animation: none !important;

    transition: none !important;
  }
}

/* =========================================================
   LITTLE WINGS ACADEMY
   STEP 6 — PREMIUM FOOTER
   ========================================================= */

.lw-footer {
  position: relative;
  overflow: hidden;
  background: #17233c;
  color: #ffffff;
  padding: 80px 0 28px;
  margin-top: 30px;
}

/* Decorative background glow */
.lw-footer-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
}

.lw-footer-glow-one {
  background: #ff6b5f;
  top: -180px;
  right: 5%;
}

.lw-footer-glow-two {
  background: #62c7b0;
  bottom: -180px;
  left: 5%;
}

/* FOOTER TOP */
.lw-footer-top {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    1.4fr
    0.8fr
    0.9fr
    1.1fr;

  gap: 55px;

  padding-bottom: 55px;
}

/* BRAND */
.lw-footer-brand {
  max-width: 360px;
}

.lw-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lw-footer-logo-row img {
  width: 58px;
  height: 58px;

  object-fit: contain;

  background: #ffffff;
  border-radius: 50%;

  padding: 3px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.lw-footer-logo-row img:hover {
  transform: rotate(-5deg) scale(1.06);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.lw-footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.lw-footer-brand-sub {
  margin-top: 5px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  color: #62c7b0;
}

.lw-footer-brand p {
  max-width: 340px;

  color: #cbd5e1;

  font-size: 0.9rem;
  line-height: 1.8;

  margin: 0;
}

/* SOCIAL ICONS */
.lw-footer-socials {
  display: flex;
  gap: 10px;

  margin-top: 24px;
}

.lw-footer-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  color: #ffffff;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.lw-footer-socials a:hover {
  transform: translateY(-5px);

  background: #ff6b5f;
  border-color: #ff6b5f;

  color: #ffffff;
}

/* FOOTER COLUMNS */
.lw-footer-column {
  position: relative;
}

.lw-footer-heading {
  display: inline-block;

  margin-bottom: 22px;

  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;

  color: #ffffff;
}

.lw-footer-heading::after {
  content: "";

  display: block;

  width: 28px;
  height: 3px;

  margin-top: 9px;

  border-radius: 20px;

  background: #ff6b5f;
}

/* LINKS */
.lw-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lw-footer-column li {
  margin-bottom: 11px;
}

.lw-footer-column li a {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #cbd5e1;

  text-decoration: none;

  font-size: 0.86rem;
  line-height: 1.5;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.lw-footer-column li a span {
  color: #62c7b0;

  font-size: 0.65rem;
  font-weight: 800;

  opacity: 0.7;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.lw-footer-column li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.lw-footer-column li a:hover span {
  color: #ff6b5f;
  transform: translateX(2px);
}

/* CONTACT */
.lw-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 18px;

  color: #cbd5e1;

  font-size: 0.84rem;
  line-height: 1.65;
}

.lw-footer-contact-icon {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(98, 199, 176, 0.1);

  color: #62c7b0;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.lw-footer-contact-item:hover .lw-footer-contact-icon {
  background: #62c7b0;
  color: #17233c;

  transform: translateY(-2px);
}

/* FOOTER BOTTOM */
.lw-footer-bottom {
  position: relative;
  z-index: 2;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;
}

.lw-footer-bottom p {
  margin: 0;

  color: #94a3b8;

  font-size: 0.78rem;
  line-height: 1.7;
}

.lw-footer-bottom-line {
  width: 45px;
  height: 3px;

  margin: 15px auto 0;

  border-radius: 20px;

  background: #62c7b0;
}

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

@media (max-width: 1050px) {
  .lw-footer-top {
    grid-template-columns:
      1.3fr
      1fr
      1fr;

    gap: 45px;
  }

  .lw-footer-brand {
    grid-column: 1 / -1;
    max-width: 600px;
  }
}

@media (max-width: 700px) {
  .lw-footer {
    padding: 60px 0 24px;
  }

  .lw-footer-top {
    grid-template-columns: 1fr;

    gap: 35px;

    padding-bottom: 40px;
  }

  .lw-footer-brand {
    grid-column: auto;
  }

  .lw-footer-brand p {
    max-width: 100%;
  }

  .lw-footer-heading {
    margin-bottom: 18px;
  }

  .lw-footer-column li {
    margin-bottom: 10px;
  }

  .lw-footer-bottom {
    padding-top: 20px;
  }

  .lw-footer-bottom p {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-footer *,
  .lw-footer *::before,
  .lw-footer *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   HOME PAGE — WHY LITTLE WINGS
   ========================================================= */

.lw-why {
  position: relative;
  overflow: hidden;

  padding: 105px 0;

  background: linear-gradient(180deg, #fff9f2 0%, #ffffff 100%);
}

/* DECORATIVE SHAPES */

.lw-why-shape {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-why-shape-one {
  width: 280px;
  height: 280px;

  top: -120px;
  left: -100px;

  background: rgba(98, 199, 176, 0.1);
}

.lw-why-shape-two {
  width: 220px;
  height: 220px;

  right: -80px;
  bottom: -80px;

  background: rgba(255, 107, 95, 0.08);
}

/* HEADER */

.lw-why-header {
  position: relative;
  z-index: 2;

  max-width: 720px;

  margin: 0 auto 55px;

  text-align: center;
}

.lw-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 15px;

  color: #ff6b5f;

  font-size: 0.72rem;
  font-weight: 900;

  letter-spacing: 0.16em;
}

.lw-section-kicker::before,
.lw-section-kicker::after {
  content: "";

  width: 22px;
  height: 2px;

  border-radius: 10px;

  background: #62c7b0;
}

.lw-why-header h2 {
  margin: 0;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(2.2rem, 4vw, 3.7rem);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.lw-why-header h2 span {
  display: block;

  color: #ff6b5f;
}

.lw-why-header p {
  max-width: 610px;

  margin: 20px auto 0;

  color: #64748b;

  font-size: 0.98rem;

  line-height: 1.8;
}

/* FEATURE GRID */

.lw-why-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

/* CARD */

.lw-why-card {
  position: relative;

  overflow: hidden;

  min-height: 275px;

  padding: 30px;

  border: 1px solid rgba(23, 35, 60, 0.07);

  border-radius: 24px;

  background: #ffffff;

  box-shadow: 0 12px 35px rgba(23, 35, 60, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lw-why-card:hover {
  transform: translateY(-9px);

  border-color: rgba(98, 199, 176, 0.45);

  box-shadow: 0 22px 50px rgba(23, 35, 60, 0.11);
}

/* NUMBER */

.lw-why-number {
  position: absolute;

  top: 22px;
  right: 25px;

  color: #e7ebf0;

  font-family: var(--font-display);

  font-size: 2.4rem;

  font-weight: 800;

  line-height: 1;
}

/* ICON */

.lw-why-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 16px;

  background: #effaf7;

  color: #62c7b0;

  font-size: 1.25rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.lw-why-card:hover .lw-why-icon {
  transform: rotate(-5deg) scale(1.08);

  background: #62c7b0;

  color: #17233c;
}

/* CARD CONTENT */

.lw-why-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 11px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: 1.25rem;

  font-weight: 800;
}

.lw-why-card p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #64748b;

  font-size: 0.87rem;

  line-height: 1.75;
}

/* BOTTOM ACCENT */

.lw-why-card-line {
  position: absolute;

  left: 30px;
  bottom: 0;

  width: 45px;
  height: 4px;

  border-radius: 10px 10px 0 0;

  background: #ff6b5f;

  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.lw-why-card:hover .lw-why-card-line {
  width: calc(100% - 60px);

  background: #62c7b0;
}

/* FEATURED CARD */

.lw-why-card-main {
  background: linear-gradient(145deg, #17233c 0%, #223353 100%);

  border-color: transparent;
}

.lw-why-card-main h3 {
  color: #ffffff;
}

.lw-why-card-main p {
  color: #cbd5e1;
}

.lw-why-card-main .lw-why-number {
  color: rgba(255, 255, 255, 0.08);
}

.lw-why-card-main .lw-why-icon {
  background: rgba(98, 199, 176, 0.13);

  color: #62c7b0;
}

.lw-why-card-main:hover {
  border-color: rgba(98, 199, 176, 0.4);
}

/* =========================================================
   WHY LITTLE WINGS — RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
  .lw-why {
    padding: 85px 0;
  }

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

@media (max-width: 600px) {
  .lw-why {
    padding: 70px 0;
  }

  .lw-why-header {
    margin-bottom: 38px;
  }

  .lw-why-header h2 {
    font-size: 2.25rem;
  }

  .lw-why-header p {
    font-size: 0.9rem;
  }

  .lw-why-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .lw-why-card {
    min-height: auto;

    padding: 26px;

    border-radius: 20px;
  }

  .lw-why-number {
    top: 20px;
    right: 20px;

    font-size: 2rem;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .lw-why *,
  .lw-why *::before,
  .lw-why *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   ABOUT US PAGE
   STEP 7 — HERO + PHILOSOPHY
   ========================================================= */

/* =========================================================
   ABOUT HERO
   ========================================================= */

.lw-about-hero {
  position: relative;

  overflow: hidden;

  padding: 85px 0 95px;

  background: linear-gradient(135deg, #fff9f2 0%, #ffffff 58%, #effaf7 100%);
}

.lw-about-hero-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-about-orb-one {
  width: 320px;
  height: 320px;

  top: -170px;
  right: -100px;

  background: rgba(255, 107, 95, 0.08);

  filter: blur(2px);
}

.lw-about-orb-two {
  width: 230px;
  height: 230px;

  bottom: -120px;
  left: -90px;

  background: rgba(98, 199, 176, 0.1);
}

.lw-about-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    0.95fr
    1.05fr;

  align-items: center;

  gap: 75px;
}

/* HERO CONTENT */

.lw-about-hero-content {
  max-width: 600px;
}

.lw-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;

  color: #ff6b5f;

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.16em;
}

.lw-about-eyebrow::before {
  content: "";

  width: 28px;
  height: 3px;

  border-radius: 10px;

  background: #62c7b0;
}

.lw-about-hero-content h1 {
  margin: 0;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(3.2rem, 6vw, 5.8rem);

  font-weight: 800;

  line-height: 0.98;

  letter-spacing: -0.045em;
}

.lw-about-hero-content h1 span {
  display: block;

  color: #ff6b5f;
}

.lw-about-hero-content > p {
  max-width: 550px;

  margin: 25px 0 0;

  color: #64748b;

  font-size: 1rem;

  line-height: 1.85;
}

/* HERO BOTTOM LINE */

.lw-about-hero-line {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 30px;
}

.lw-about-hero-line span {
  width: 55px;
  height: 3px;

  border-radius: 20px;

  background: #62c7b0;
}

.lw-about-hero-line small {
  color: #17233c;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}

/* HERO IMAGE */

.lw-about-hero-visual {
  position: relative;

  padding: 15px;
}

.lw-about-image-card {
  position: relative;

  overflow: hidden;

  min-height: 470px;

  border-radius: 38px;

  background: #17233c;

  box-shadow: 0 30px 70px rgba(23, 35, 60, 0.16);
}

.lw-about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;

  display: block;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.lw-about-image-card:hover img {
  transform: scale(1.045);
}

.lw-about-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(23, 35, 60, 0.72) 0%,
    rgba(23, 35, 60, 0.05) 60%
  );
}

.lw-about-image-badge {
  position: absolute;

  left: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 17px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.13);

  backdrop-filter: blur(12px);

  color: #ffffff;

  font-size: 0.76rem;
  font-weight: 800;
}

.lw-about-image-badge i {
  color: #ff6b5f;
}

/* IMAGE DECORATION */

.lw-about-floating-shape {
  position: absolute;

  width: 85px;
  height: 85px;

  right: -10px;
  top: -10px;

  border-radius: 24px;

  background: #62c7b0;

  opacity: 0.9;

  z-index: -1;

  transform: rotate(12deg);
}

/* =========================================================
   OUR PHILOSOPHY
   ========================================================= */

.lw-about-philosophy {
  display: grid;

  grid-template-columns:
    1fr
    0.85fr;

  gap: 75px;

  align-items: center;

  margin-bottom: 70px;
}

/* CONTENT */

.lw-about-philosophy-content {
  max-width: 650px;
}

.lw-about-section-tag {
  display: inline-block;

  margin-bottom: 16px;

  color: #62c7b0;

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.16em;
}

.lw-about-section-tag::after {
  content: "";

  display: block;

  width: 30px;
  height: 3px;

  margin-top: 8px;

  border-radius: 20px;

  background: #ff6b5f;
}

.lw-about-philosophy h2 {
  margin: 0 0 25px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.lw-about-philosophy h2 span {
  display: block;

  color: #ff6b5f;
}

.lw-about-copy p {
  margin: 0 0 17px;

  color: #64748b;

  font-size: 0.95rem;

  line-height: 1.85;
}

.lw-about-copy p:first-child {
  color: #475569;

  font-size: 1rem;
}

.lw-about-copy strong {
  color: #17233c;
}

/* PHILOSOPHY POINTS */

.lw-philosophy-points {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

  margin-top: 28px;
}

.lw-philosophy-point {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  padding: 18px;

  border: 1px solid rgba(23, 35, 60, 0.07);

  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 10px 30px rgba(23, 35, 60, 0.045);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lw-philosophy-point:hover {
  transform: translateY(-5px);

  border-color: rgba(98, 199, 176, 0.35);

  box-shadow: 0 16px 35px rgba(23, 35, 60, 0.08);
}

.lw-philosophy-point-icon {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #effaf7;

  color: #62c7b0;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.lw-philosophy-point:hover .lw-philosophy-point-icon {
  transform: rotate(-6deg);

  background: #62c7b0;

  color: #17233c;
}

.lw-philosophy-point h4 {
  margin: 1px 0 5px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: 0.95rem;

  font-weight: 800;
}

.lw-philosophy-point p {
  margin: 0;

  color: #64748b;

  font-size: 0.75rem;

  line-height: 1.55;
}

/* =========================================================
   PHILOSOPHY IMAGE
   ========================================================= */

.lw-about-philosophy-visual {
  position: relative;

  padding: 12px;
}

.lw-about-photo-frame {
  position: relative;

  overflow: hidden;

  min-height: 520px;

  border-radius: 32px;

  background: #17233c;

  box-shadow: 0 25px 60px rgba(23, 35, 60, 0.13);
}

.lw-about-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.lw-about-photo-frame:hover img {
  transform: scale(1.04);
}

.lw-about-photo-shade {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(23, 35, 60, 0.75), transparent 55%);
}

.lw-about-photo-label {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 23px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #ffffff;
}

.lw-about-photo-label span {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ff6b5f;

  font-size: 0.7rem;
  font-weight: 900;
}

.lw-about-photo-label strong {
  font-family: var(--font-display);

  font-size: 1rem;
}

.lw-about-photo-decoration {
  position: absolute;

  width: 75px;
  height: 75px;

  left: -5px;
  bottom: -5px;

  border-radius: 22px;

  background: #62c7b0;

  z-index: -1;

  transform: rotate(-10deg);
}

/* =========================================================
   ABOUT PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
  .lw-about-hero {
    padding: 70px 0 80px;
  }

  .lw-about-hero-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .lw-about-hero-content {
    max-width: 700px;
  }

  .lw-about-hero-visual {
    max-width: 650px;
  }

  .lw-about-philosophy {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .lw-about-philosophy-content {
    max-width: 100%;
  }

  .lw-about-philosophy-visual {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .lw-about-hero {
    padding: 55px 0 65px;
  }

  .lw-about-hero-content h1 {
    font-size: 3.25rem;
  }

  .lw-about-hero-content > p {
    font-size: 0.9rem;
  }

  .lw-about-image-card,
  .lw-about-image-card img {
    min-height: 350px;
  }

  .lw-about-image-card {
    border-radius: 25px;
  }

  .lw-about-image-badge {
    left: 16px;
    bottom: 16px;

    font-size: 0.68rem;
  }

  .lw-about-philosophy {
    margin-bottom: 50px;
  }

  .lw-about-philosophy h2 {
    font-size: 2.25rem;
  }

  .lw-philosophy-points {
    grid-template-columns: 1fr;
  }

  .lw-about-photo-frame,
  .lw-about-photo-frame img {
    min-height: 380px;
  }

  .lw-about-photo-frame {
    border-radius: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-about-hero *,
  .lw-about-philosophy *,
  .lw-about-hero *::before,
  .lw-about-hero *::after,
  .lw-about-philosophy *::before,
  .lw-about-philosophy *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   ABOUT US — FEATURE CARDS
   ========================================================= */

.lw-about-features {
  position: relative;

  padding: 25px 0 20px;
}

/* HEADER */

.lw-about-features-header {
  margin-bottom: 38px;
}

.lw-about-features-header > span {
  display: inline-block;

  margin-bottom: 12px;

  color: #62c7b0;

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.16em;
}

.lw-about-features-header > span::after {
  content: "";

  display: block;

  width: 30px;
  height: 3px;

  margin-top: 8px;

  border-radius: 20px;

  background: #ff6b5f;
}

.lw-about-features-header h2 {
  max-width: 650px;

  margin: 0;

  color: #17233c;

  font-family: var(--font-display);

  font-size: clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.035em;
}

.lw-about-features-header h2 span {
  color: #ff6b5f;
}

/* GRID */

.lw-about-features-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

/* CARD */

.lw-about-feature-card {
  position: relative;

  min-height: 315px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  padding: 30px;

  border: 1px solid rgba(23, 35, 60, 0.08);

  border-radius: 26px;

  background: #ffffff;

  box-shadow: 0 12px 35px rgba(23, 35, 60, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lw-about-feature-card:hover {
  transform: translateY(-9px);

  border-color: rgba(98, 199, 176, 0.45);

  box-shadow: 0 25px 55px rgba(23, 35, 60, 0.11);
}

/* TOP */

.lw-about-feature-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 38px;
}

.lw-about-feature-number {
  color: #dce2e8;

  font-family: var(--font-display);

  font-size: 2.6rem;

  font-weight: 800;

  line-height: 1;
}

/* ICON */

.lw-about-feature-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: #effaf7;

  color: #62c7b0;

  font-size: 1.35rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.lw-about-feature-card:hover .lw-about-feature-icon {
  transform: rotate(-7deg) scale(1.08);

  background: #62c7b0;

  color: #17233c;
}

/* CONTENT */

.lw-about-feature-content {
  position: relative;
  z-index: 2;

  flex: 1;
}

.lw-about-feature-content h3 {
  margin: 0 0 12px;

  color: #17233c;

  font-family: var(--font-display);

  font-size: 1.35rem;

  font-weight: 800;

  line-height: 1.2;
}

.lw-about-feature-content p {
  margin: 0;

  color: #64748b;

  font-size: 0.87rem;

  line-height: 1.75;
}

/* ARROW */

.lw-about-feature-arrow {
  position: absolute;

  right: 28px;
  bottom: 25px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4f6f8;

  color: #17233c;

  font-size: 0.75rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.lw-about-feature-card:hover .lw-about-feature-arrow {
  transform: translateX(5px);

  background: #ff6b5f;

  color: #ffffff;
}

/* BOTTOM ACCENT */

.lw-about-feature-card::after {
  content: "";

  position: absolute;

  left: 30px;
  bottom: 0;

  width: 45px;
  height: 4px;

  border-radius: 10px 10px 0 0;

  background: #62c7b0;

  transition:
    width 0.4s ease,
    background 0.4s ease;
}

.lw-about-feature-card:hover::after {
  width: calc(100% - 60px);

  background: #ff6b5f;
}

/* ACCENT CARD */

.lw-about-feature-card-accent {
  background: linear-gradient(145deg, #17233c 0%, #223353 100%);

  border-color: transparent;
}

.lw-about-feature-card-accent .lw-about-feature-number {
  color: rgba(255, 255, 255, 0.1);
}

.lw-about-feature-card-accent .lw-about-feature-icon {
  background: rgba(98, 199, 176, 0.13);

  color: #62c7b0;
}

.lw-about-feature-card-accent .lw-about-feature-content h3 {
  color: #ffffff;
}

.lw-about-feature-card-accent .lw-about-feature-content p {
  color: #cbd5e1;
}

.lw-about-feature-card-accent .lw-about-feature-arrow {
  background: rgba(255, 255, 255, 0.09);

  color: #ffffff;
}

.lw-about-feature-card-accent:hover {
  border-color: rgba(98, 199, 176, 0.4);
}

/* =========================================================
   ABOUT FEATURES — RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
  .lw-about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lw-about-feature-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .lw-about-features {
    padding-top: 10px;
  }

  .lw-about-features-header {
    margin-bottom: 28px;
  }

  .lw-about-features-header h2 {
    font-size: 2.25rem;
  }

  .lw-about-features-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .lw-about-feature-card:last-child {
    grid-column: auto;
  }

  .lw-about-feature-card {
    min-height: 285px;

    padding: 26px;

    border-radius: 21px;
  }

  .lw-about-feature-top {
    margin-bottom: 30px;
  }
}

/* =========================================
   PRESCHOOL PAGE — HERO
========================================= */

.lw-preschool-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(98, 199, 176, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(255, 107, 95, 0.14),
      transparent 28%
    ),
    #fff9f2;
}

.lw-preschool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 35, 60, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 60, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.lw-preschool-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.lw-preschool-orb-one {
  width: 170px;
  height: 170px;
  right: 8%;
  bottom: -70px;
  background: rgba(139, 124, 246, 0.1);
}

.lw-preschool-orb-two {
  width: 100px;
  height: 100px;
  left: 4%;
  top: 12%;
  background: rgba(255, 107, 95, 0.1);
}

/* Hero Layout */

.lw-preschool-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

/* Hero Content */

.lw-preschool-hero-content {
  animation: lwPreschoolContentIn 0.8s ease both;
}

.lw-preschool-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(98, 199, 176, 0.14);
  color: #17233c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-preschool-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b5f;
  box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.12);
}

.lw-preschool-hero h1 {
  margin: 0 0 22px;
  max-width: 700px;
  color: #17233c;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.lw-preschool-hero h1 span {
  display: block;
  color: #ff6b5f;
}

.lw-preschool-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Hero Mini Information */

.lw-preschool-hero-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lw-preschool-mini-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(23, 35, 60, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #17233c;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(23, 35, 60, 0.05);
}

.lw-preschool-mini-item i {
  color: #62c7b0;
}

/* Hero Visual */

.lw-preschool-hero-visual {
  position: relative;
  animation: lwPreschoolVisualIn 0.9s 0.12s ease both;
}

.lw-preschool-hero-card {
  position: relative;
  max-width: 540px;
  margin-left: auto;
  padding: 14px;
  border-radius: 32px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(23, 35, 60, 0.14),
    0 8px 24px rgba(23, 35, 60, 0.06);
  transform: rotate(1.2deg);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.lw-preschool-hero-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow:
    0 36px 85px rgba(23, 35, 60, 0.17),
    0 12px 30px rgba(23, 35, 60, 0.08);
}

.lw-preschool-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 23px;
  aspect-ratio: 1.05 / 1;
}

.lw-preschool-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lw-preschool-hero-card:hover .lw-preschool-card-image img {
  transform: scale(1.05);
}

.lw-preschool-image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 35, 60, 0.9);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.lw-preschool-image-badge i {
  color: #62c7b0;
}

/* Floating Fee Card */

.lw-preschool-floating-card {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  padding: 14px 17px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 35, 60, 0.16);
  animation: lwPreschoolFloat 4s ease-in-out infinite;
}

.lw-preschool-floating-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 107, 95, 0.12);
  color: #ff6b5f;
}

.lw-preschool-floating-card strong {
  display: block;
  color: #17233c;
  font-size: 1.15rem;
  line-height: 1;
}

.lw-preschool-floating-card span {
  color: #64748b;
  font-size: 0.76rem;
}

/* Animations */

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

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

@keyframes lwPreschoolFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .lw-preschool-hero {
    padding: 60px 0 70px;
  }

  .lw-preschool-hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .lw-preschool-hero-content {
    text-align: center;
  }

  .lw-preschool-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-preschool-eyebrow,
  .lw-preschool-hero-bottom {
    justify-content: center;
  }

  .lw-preschool-hero-card {
    margin: 0 auto;
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .lw-preschool-hero {
    padding: 48px 0 58px;
  }

  .lw-preschool-hero h1 {
    font-size: 2.55rem;
  }

  .lw-preschool-hero-content > p {
    font-size: 0.98rem;
  }

  .lw-preschool-hero-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .lw-preschool-mini-item {
    justify-content: center;
  }

  .lw-preschool-hero-card {
    padding: 9px;
    border-radius: 24px;
  }

  .lw-preschool-card-image {
    border-radius: 18px;
  }

  .lw-preschool-floating-card {
    right: 8px;
    bottom: 18px;
    min-width: 155px;
    padding: 11px 13px;
  }

  .lw-preschool-floating-icon {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-preschool-hero-content,
  .lw-preschool-hero-visual,
  .lw-preschool-floating-card {
    animation: none;
  }

  .lw-preschool-hero-card,
  .lw-preschool-card-image img {
    transition: none;
  }
}

/* =========================================
   PRESCHOOL — CURRICULUM & FEE SECTION
========================================= */

.lw-preschool-details {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: start;
}

/* -----------------------------------------
   CURRICULUM CONTENT
----------------------------------------- */

.lw-preschool-curriculum {
  padding-top: 8px;
}

.lw-preschool-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ff6b5f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lw-preschool-section-label span {
  width: 28px;
  height: 3px;
  border-radius: 10px;
  background: #ff6b5f;
}

.lw-preschool-curriculum h2 {
  margin: 0 0 16px;
  color: #17233c;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.lw-preschool-intro {
  max-width: 700px;
  margin: 0 0 30px;
  color: #64748b;
  line-height: 1.8;
}

/* -----------------------------------------
   FEATURE LIST
----------------------------------------- */

.lw-preschool-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lw-preschool-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 17px 19px;
  border: 1px solid rgba(23, 35, 60, 0.07);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(23, 35, 60, 0.045);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lw-preschool-feature::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 5px 5px 0;
  background: #62c7b0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.lw-preschool-feature:hover {
  transform: translateX(7px);
  border-color: rgba(98, 199, 176, 0.3);
  box-shadow: 0 15px 35px rgba(23, 35, 60, 0.09);
}

.lw-preschool-feature:hover::after {
  transform: scaleY(1);
}

.lw-preschool-feature-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(98, 199, 176, 0.13);
  color: #17233c;
  font-size: 1.05rem;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.lw-preschool-feature:hover .lw-preschool-feature-icon {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(255, 107, 95, 0.13);
  color: #ff6b5f;
}

.lw-preschool-feature h3 {
  margin: 1px 0 5px;
  color: #17233c;
  font-size: 0.98rem;
  font-weight: 850;
}

.lw-preschool-feature p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* -----------------------------------------
   WHATSAPP BUTTON
----------------------------------------- */

.lw-preschool-enquire {
  margin-top: 28px;
}

.lw-preschool-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  background: #17233c;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(23, 35, 60, 0.14);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.lw-preschool-whatsapp i {
  color: #62c7b0;
  font-size: 1.05rem;
}

.lw-preschool-whatsapp span {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.lw-preschool-whatsapp:hover {
  transform: translateY(-3px);
  background: #ff6b5f;
  box-shadow: 0 17px 35px rgba(255, 107, 95, 0.2);
}

.lw-preschool-whatsapp:hover i {
  color: #fff;
}

.lw-preschool-whatsapp:hover span {
  transform: translateX(4px);
}

/* -----------------------------------------
   FEE CARD
----------------------------------------- */

.lw-preschool-fee-wrap {
  position: sticky;
  top: 100px;
}

.lw-preschool-fee-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  background: #17233c;
  box-shadow:
    0 25px 60px rgba(23, 35, 60, 0.18),
    0 8px 25px rgba(23, 35, 60, 0.08);
}

.lw-preschool-fee-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(98, 199, 176, 0.14);
}

.lw-preschool-fee-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: -70px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(255, 107, 95, 0.1);
}

.lw-preschool-fee-top,
.lw-preschool-fee-divider,
.lw-preschool-fee-info,
.lw-preschool-admission-btn {
  position: relative;
  z-index: 2;
}

.lw-preschool-fee-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(98, 199, 176, 0.14);
  color: #62c7b0;
  font-size: 0.72rem;
  font-weight: 800;
}

.lw-preschool-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 19px 0 10px;
}

.lw-preschool-price span {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.lw-preschool-price small {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 700;
}

.lw-preschool-fee-top > p {
  margin: 0;
  color: #b8c2d3;
  font-size: 0.88rem;
  line-height: 1.7;
}

.lw-preschool-fee-divider {
  height: 1px;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.1);
}

.lw-preschool-fee-info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 26px;
}

.lw-preschool-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.lw-preschool-info-row > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cbd5e1;
  font-size: 0.86rem;
  font-weight: 700;
}

.lw-preschool-info-row i {
  width: 20px;
  color: #62c7b0;
  text-align: center;
}

.lw-preschool-info-row strong {
  color: #fff;
  font-size: 0.82rem;
  text-align: right;
}

.lw-preschool-info-row:last-child strong {
  color: #62c7b0;
}

.lw-preschool-admission-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ff6b5f;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.86rem;
  font-weight: 850;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-preschool-admission-btn span {
  transition: transform 0.3s ease;
}

.lw-preschool-admission-btn:hover {
  transform: translateY(-3px);
  background: #62c7b0;
  box-shadow: 0 14px 30px rgba(98, 199, 176, 0.22);
}

.lw-preschool-admission-btn:hover span {
  transform: translateX(4px);
}

/* -----------------------------------------
   SMALL BRAND NOTE
----------------------------------------- */

.lw-preschool-fee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 700;
}

.lw-preschool-fee-note i {
  color: #ff6b5f;
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 900px) {
  .lw-preschool-details {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .lw-preschool-fee-wrap {
    position: relative;
    top: auto;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .lw-preschool-feature {
    gap: 13px;
    padding: 15px;
  }

  .lw-preschool-feature-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .lw-preschool-feature h3 {
    font-size: 0.92rem;
  }

  .lw-preschool-feature p {
    font-size: 0.82rem;
  }

  .lw-preschool-whatsapp {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .lw-preschool-fee-card {
    padding: 25px 20px;
    border-radius: 23px;
  }

  .lw-preschool-info-row {
    align-items: flex-start;
  }

  .lw-preschool-info-row strong {
    max-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-preschool-feature,
  .lw-preschool-feature-icon,
  .lw-preschool-whatsapp,
  .lw-preschool-admission-btn {
    transition: none;
  }
}

/* =========================================
   DAYCARE PAGE — HERO
========================================= */

.lw-daycare-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(98, 199, 176, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 25%,
      rgba(255, 107, 95, 0.13),
      transparent 30%
    ),
    #fff9f2;
}

.lw-daycare-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 35, 60, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 60, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

/* Decorative Orbs */

.lw-daycare-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lw-daycare-orb-one {
  width: 190px;
  height: 190px;
  right: -60px;
  top: 12%;
  background: rgba(139, 124, 246, 0.09);
}

.lw-daycare-orb-two {
  width: 120px;
  height: 120px;
  left: 8%;
  bottom: -50px;
  background: rgba(255, 107, 95, 0.09);
}

/* Hero Grid */

.lw-daycare-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 75px;
}

/* Content */

.lw-daycare-hero-content {
  animation: lwDaycareContentIn 0.8s ease both;
}

.lw-daycare-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 15px;
  margin-bottom: 20px;

  border-radius: 999px;
  background: rgba(255, 107, 95, 0.1);

  color: #17233c;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-daycare-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #62c7b0;
  box-shadow: 0 0 0 5px rgba(98, 199, 176, 0.12);
}

.lw-daycare-hero h1 {
  max-width: 700px;
  margin: 0 0 22px;

  color: #17233c;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.lw-daycare-hero h1 span {
  display: block;
  color: #ff6b5f;
}

.lw-daycare-hero-content > p {
  max-width: 650px;
  margin: 0;

  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Actions */

.lw-daycare-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.lw-daycare-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 19px;
  border-radius: 14px;

  background: #17233c;
  color: #fff !important;
  text-decoration: none !important;

  font-size: 0.88rem;
  font-weight: 850;

  box-shadow: 0 12px 28px rgba(23, 35, 60, 0.14);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-daycare-primary-btn i {
  color: #62c7b0;
  font-size: 1.05rem;
}

.lw-daycare-primary-btn span {
  transition: transform 0.3s ease;
}

.lw-daycare-primary-btn:hover {
  transform: translateY(-3px);
  background: #ff6b5f;
  box-shadow: 0 17px 35px rgba(255, 107, 95, 0.2);
}

.lw-daycare-primary-btn:hover i {
  color: #fff;
}

.lw-daycare-primary-btn:hover span {
  transform: translateX(4px);
}

/* Price Pill */

.lw-daycare-price-pill {
  display: flex;
  align-items: baseline;
  gap: 5px;

  padding: 12px 16px;

  border: 1px solid rgba(23, 35, 60, 0.08);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.8);

  box-shadow: 0 8px 24px rgba(23, 35, 60, 0.05);
}

.lw-daycare-price-pill strong {
  color: #17233c;
  font-size: 1.15rem;
  font-weight: 900;
}

.lw-daycare-price-pill small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}

/* =========================================
   DAYCARE HERO IMAGE
========================================= */

.lw-daycare-hero-visual {
  position: relative;
  animation: lwDaycareVisualIn 0.9s 0.12s ease both;
}

.lw-daycare-image-frame {
  position: relative;
  overflow: hidden;

  max-width: 550px;
  margin-left: auto;

  padding: 12px;
  border-radius: 32px;

  background: #fff;

  box-shadow:
    0 30px 75px rgba(23, 35, 60, 0.15),
    0 8px 25px rgba(23, 35, 60, 0.06);

  transform: rotate(-1.2deg);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.lw-daycare-image-frame:hover {
  transform: rotate(0deg) translateY(-8px);

  box-shadow:
    0 38px 90px rgba(23, 35, 60, 0.18),
    0 12px 30px rgba(23, 35, 60, 0.08);
}

.lw-daycare-image-frame img {
  display: block;

  width: 100%;
  aspect-ratio: 1.05 / 1;

  object-fit: cover;

  border-radius: 23px;

  transition: transform 0.7s ease;
}

.lw-daycare-image-frame:hover img {
  transform: scale(1.05);
}

.lw-daycare-image-overlay {
  position: absolute;
  inset: 12px;

  border-radius: 23px;

  background: linear-gradient(180deg, transparent 55%, rgba(23, 35, 60, 0.35));

  pointer-events: none;
}

/* Image Badge */

.lw-daycare-image-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  border-radius: 999px;

  background: rgba(23, 35, 60, 0.9);
  color: #fff;

  font-size: 0.76rem;
  font-weight: 800;

  backdrop-filter: blur(8px);
}

.lw-daycare-image-badge i {
  color: #62c7b0;
}

/* =========================================
   FLOATING TIMING CARD
========================================= */

.lw-daycare-floating-card {
  position: absolute;

  right: -25px;
  bottom: 34px;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 215px;

  padding: 14px 16px;

  border-radius: 18px;

  background: #fff;

  box-shadow: 0 18px 42px rgba(23, 35, 60, 0.16);

  animation: lwDaycareFloat 4s ease-in-out infinite;
}

.lw-daycare-floating-icon {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: rgba(98, 199, 176, 0.14);
  color: #17233c;
}

.lw-daycare-floating-card strong {
  display: block;

  color: #17233c;
  font-size: 0.9rem;
  font-weight: 900;
}

.lw-daycare-floating-card span {
  display: block;

  margin-top: 3px;

  color: #64748b;
  font-size: 0.72rem;
}

/* Decorative Dot */

.lw-daycare-floating-dot {
  position: absolute;

  width: 18px;
  height: 18px;

  right: -12px;
  top: 12%;

  border-radius: 50%;

  background: #ff6b5f;

  box-shadow: 0 0 0 8px rgba(255, 107, 95, 0.1);

  animation: lwDaycarePulse 2.8s ease-in-out infinite;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes lwDaycareContentIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

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

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

@keyframes lwDaycareFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes lwDaycarePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

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

@media (max-width: 900px) {
  .lw-daycare-hero {
    padding: 60px 0 70px;
  }

  .lw-daycare-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .lw-daycare-hero-content {
    text-align: center;
  }

  .lw-daycare-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-daycare-eyebrow {
    justify-content: center;
  }

  .lw-daycare-hero-actions {
    justify-content: center;
  }

  .lw-daycare-image-frame {
    margin: 0 auto;
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .lw-daycare-hero {
    padding: 48px 0 58px;
  }

  .lw-daycare-hero h1 {
    font-size: 2.55rem;
  }

  .lw-daycare-hero-content > p {
    font-size: 0.98rem;
  }

  .lw-daycare-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lw-daycare-primary-btn,
  .lw-daycare-price-pill {
    justify-content: center;
  }

  .lw-daycare-image-frame {
    padding: 9px;
    border-radius: 24px;
  }

  .lw-daycare-image-frame img,
  .lw-daycare-image-overlay {
    border-radius: 18px;
  }

  .lw-daycare-floating-card {
    right: 8px;
    bottom: 20px;

    min-width: 190px;
    padding: 11px 13px;
  }

  .lw-daycare-floating-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .lw-daycare-floating-dot {
    right: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-daycare-hero-content,
  .lw-daycare-hero-visual,
  .lw-daycare-floating-card,
  .lw-daycare-floating-dot {
    animation: none;
  }

  .lw-daycare-image-frame,
  .lw-daycare-image-frame img,
  .lw-daycare-primary-btn {
    transition: none;
  }
}

/* =========================================
   DAYCARE — CARE & PLAN SECTION
========================================= */

.lw-daycare-care {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #f8fafc;
}

.lw-daycare-care::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  top: 15%;
  border-radius: 50%;
  background: rgba(98, 199, 176, 0.07);
  pointer-events: none;
}

.lw-daycare-care::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -170px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 107, 95, 0.06);
  pointer-events: none;
}

/* =========================================
   MAIN GRID
========================================= */

.lw-daycare-care-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: start;
}

/* =========================================
   LEFT CONTENT
========================================= */

.lw-daycare-care-content {
  animation: lwDaycareCareIn 0.7s ease both;
}

.lw-daycare-care-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 17px;
  padding: 8px 14px;

  border: 1.5px dashed #62c7b0;
  border-radius: 999px;

  color: #087f69;
  background: rgba(98, 199, 176, 0.05);

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.lw-daycare-care-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62c7b0;
}

.lw-daycare-care-content h2 {
  margin: 0 0 15px;

  color: #17233c;

  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lw-daycare-care-content h2 span {
  display: block;
  color: #ff6b5f;
}

.lw-daycare-care-intro {
  max-width: 680px;
  margin: 0 0 30px;

  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.75;
}

/* =========================================
   CARE FEATURE CARDS
========================================= */

.lw-daycare-care-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.lw-daycare-care-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 17px 18px;

  border: 1px solid rgba(23, 35, 60, 0.07);
  border-radius: 18px;

  background: #fff;

  box-shadow: 0 7px 24px rgba(23, 35, 60, 0.045);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lw-daycare-care-item::before {
  content: "";

  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;

  width: 3px;

  border-radius: 0 5px 5px 0;

  background: #62c7b0;

  transform: scaleY(0);
  transform-origin: center;

  transition: transform 0.35s ease;
}

.lw-daycare-care-item:hover {
  transform: translateX(7px);

  border-color: rgba(98, 199, 176, 0.3);

  box-shadow: 0 15px 35px rgba(23, 35, 60, 0.09);
}

.lw-daycare-care-item:hover::before {
  transform: scaleY(1);
}

/* Icons */

.lw-daycare-care-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  font-size: 1.05rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.lw-daycare-care-item:hover .lw-daycare-care-icon {
  transform: rotate(-6deg) scale(1.07);
}

.lw-care-pink {
  background: rgba(255, 107, 95, 0.11);
  color: #ff6b5f;
}

.lw-care-blue {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.lw-care-orange {
  background: rgba(249, 115, 22, 0.11);
  color: #f97316;
}

.lw-care-mint {
  background: rgba(98, 199, 176, 0.13);
  color: #0b9b80;
}

/* Text */

.lw-daycare-care-text {
  flex: 1;
}

.lw-daycare-care-text h3 {
  margin: 0 0 4px;

  color: #17233c;

  font-size: 0.95rem;
  font-weight: 900;
}

.lw-daycare-care-text p {
  margin: 0;

  color: #64748b;

  font-size: 0.84rem;
  line-height: 1.5;
}

.lw-daycare-item-arrow {
  color: #cbd5e1;
  font-size: 1.1rem;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.lw-daycare-care-item:hover .lw-daycare-item-arrow {
  color: #ff6b5f;
  transform: translateX(4px);
}

/* =========================================
   PLAN CARD
========================================= */

.lw-daycare-plan-wrap {
  position: sticky;
  top: 105px;

  animation: lwDaycarePlanIn 0.8s 0.1s ease both;
}

.lw-daycare-plan-card {
  position: relative;
  overflow: hidden;

  padding: 36px;

  border-radius: 30px;

  background: #fff;

  border: 1px solid rgba(23, 35, 60, 0.06);

  box-shadow: 0 25px 65px rgba(23, 35, 60, 0.13);
}

.lw-daycare-plan-card::before {
  content: "";

  position: absolute;

  width: 210px;
  height: 210px;

  right: -100px;
  top: -105px;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.1);
}

.lw-daycare-plan-card::after {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  left: -80px;
  bottom: -70px;

  border-radius: 50%;

  background: rgba(255, 107, 95, 0.07);
}

/* Plan Label */

.lw-daycare-plan-label {
  position: relative;
  z-index: 2;

  display: inline-flex;

  padding: 8px 13px;

  border: 1.5px dashed #0284c7;
  border-radius: 999px;

  color: #0284c7;

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Price */

.lw-daycare-plan-price {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: baseline;
  gap: 8px;

  margin: 36px 0 15px;
}

.lw-daycare-plan-price span {
  color: #0284c7;

  font-size: clamp(2.7rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: 1;

  letter-spacing: -0.05em;
}

.lw-daycare-plan-price small {
  color: #64748b;

  font-size: 0.92rem;
  font-weight: 800;
}

/* Description */

.lw-daycare-plan-description {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #64748b;

  font-size: 0.9rem;
  line-height: 1.75;
}

/* Flexible Timing */

.lw-daycare-flexible {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  gap: 9px;

  margin: 24px 0 20px;
  padding: 15px;

  border-radius: 14px;

  background: #eff8fd;

  color: #0284c7;

  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.5;
}

.lw-daycare-flexible i {
  margin-top: 2px;
  flex: 0 0 auto;
}

/* CTA */

.lw-daycare-plan-btn {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  box-sizing: border-box;

  padding: 15px 18px;

  border-radius: 999px;

  background: #0284c7;
  color: #fff !important;

  text-decoration: none !important;

  font-size: 0.88rem;
  font-weight: 900;

  box-shadow: 0 12px 25px rgba(2, 132, 199, 0.18);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-daycare-plan-btn i {
  font-size: 1rem;
}

.lw-daycare-plan-btn span {
  transition: transform 0.3s ease;
}

.lw-daycare-plan-btn:hover {
  transform: translateY(-3px);

  background: #17233c;

  box-shadow: 0 17px 35px rgba(23, 35, 60, 0.17);
}

.lw-daycare-plan-btn:hover span {
  transform: translateX(4px);
}

/* =========================================
   DECORATIVE DOTS
========================================= */

.lw-daycare-plan-decoration {
  display: flex;
  justify-content: center;
  gap: 7px;

  margin-top: 18px;
}

.lw-daycare-plan-decoration span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #cbd5e1;
}

.lw-daycare-plan-decoration span:first-child {
  background: #ff6b5f;
}

.lw-daycare-plan-decoration span:last-child {
  background: #62c7b0;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes lwDaycareCareIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes lwDaycarePlanIn {
  from {
    opacity: 0;
    transform: translateX(25px);
  }

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

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

@media (max-width: 900px) {
  .lw-daycare-care {
    padding: 70px 0;
  }

  .lw-daycare-care-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .lw-daycare-plan-wrap {
    position: relative;
    top: auto;

    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .lw-daycare-care {
    padding: 55px 0;
  }

  .lw-daycare-care-content h2 {
    font-size: 2.25rem;
  }

  .lw-daycare-care-intro {
    font-size: 0.9rem;
  }

  .lw-daycare-care-item {
    gap: 12px;
    padding: 15px;
  }

  .lw-daycare-care-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .lw-daycare-care-text h3 {
    font-size: 0.88rem;
  }

  .lw-daycare-care-text p {
    font-size: 0.78rem;
  }

  .lw-daycare-item-arrow {
    display: none;
  }

  .lw-daycare-plan-card {
    padding: 27px 20px;
    border-radius: 24px;
  }

  .lw-daycare-plan-price {
    margin-top: 28px;
  }

  .lw-daycare-plan-price span {
    font-size: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-daycare-care-content,
  .lw-daycare-plan-wrap {
    animation: none;
  }

  .lw-daycare-care-item,
  .lw-daycare-care-icon,
  .lw-daycare-plan-btn {
    transition: none;
  }
}

/* =========================================
   ACTIVITY CLUB — HERO
========================================= */

.lw-activity-hero {
  position: relative;
  overflow: hidden;

  padding: 78px 0 90px;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(98, 199, 176, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(255, 107, 95, 0.14),
      transparent 28%
    ),
    #fff9f2;
}

.lw-activity-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(23, 35, 60, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 60, 0.025) 1px, transparent 1px);

  background-size: 42px 42px;
}

/* -----------------------------------------
   DECORATIVE ORBS
----------------------------------------- */

.lw-activity-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-activity-orb-one {
  width: 180px;
  height: 180px;

  left: -70px;
  bottom: 5%;

  background: rgba(139, 124, 246, 0.08);
}

.lw-activity-orb-two {
  width: 120px;
  height: 120px;

  right: 8%;
  bottom: -45px;

  background: rgba(255, 107, 95, 0.08);
}

/* =========================================
   HERO GRID
========================================= */

.lw-activity-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 70px;
}

/* =========================================
   HERO CONTENT
========================================= */

.lw-activity-hero-content {
  animation: lwActivityContentIn 0.8s ease both;
}

.lw-activity-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 9px 15px;

  border: 1.5px dashed #ff6b5f;
  border-radius: 999px;

  background: rgba(255, 107, 95, 0.045);

  color: #17233c;

  font-size: 0.77rem;
  font-weight: 900;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lw-activity-eyebrow span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ff6b5f;

  box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.1);
}

.lw-activity-hero h1 {
  max-width: 720px;

  margin: 0 0 22px;

  color: #17233c;

  font-size: clamp(2.7rem, 5vw, 4.7rem);

  line-height: 1.04;

  letter-spacing: -0.045em;
}

.lw-activity-word-explore {
  color: #ff6b5f;
}

.lw-activity-word-create {
  color: #0284c7;
}

.lw-activity-word-shine {
  color: #f59e0b;
}

.lw-activity-hero-content > p {
  max-width: 680px;

  margin: 0;

  color: #64748b;

  font-size: 1.08rem;

  line-height: 1.8;
}

/* =========================================
   HERO VISUAL
========================================= */

.lw-activity-hero-visual {
  position: relative;

  min-height: 470px;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: lwActivityVisualIn 0.9s 0.12s ease both;
}

/* Main Card */

.lw-activity-main-card {
  position: relative;

  width: min(100%, 440px);

  padding: 28px;

  border-radius: 32px;

  background: #fff;

  box-shadow:
    0 30px 75px rgba(23, 35, 60, 0.14),
    0 8px 25px rgba(23, 35, 60, 0.06);

  transform: rotate(1deg);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.lw-activity-main-card:hover {
  transform: rotate(0deg) translateY(-8px);

  box-shadow:
    0 38px 90px rgba(23, 35, 60, 0.17),
    0 12px 30px rgba(23, 35, 60, 0.08);
}

/* Card Top */

.lw-activity-card-top {
  display: flex;
  align-items: baseline;
  gap: 9px;

  margin-bottom: 26px;
}

.lw-activity-card-top span {
  color: #17233c;

  font-size: 4rem;
  font-weight: 950;

  line-height: 1;

  letter-spacing: -0.06em;
}

.lw-activity-card-top small {
  color: #64748b;

  font-size: 0.88rem;
  font-weight: 800;
}

/* =========================================
   ACTIVITY ICON GRID
========================================= */

.lw-activity-icon-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 13px;
}

.lw-activity-icon-card {
  aspect-ratio: 1;

  display: grid;
  place-items: center;

  border-radius: 20px;

  font-size: 1.6rem;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-activity-icon-card:hover {
  transform: translateY(-6px) rotate(-4deg);

  box-shadow: 0 12px 25px rgba(23, 35, 60, 0.1);
}

.lw-activity-pink {
  background: rgba(255, 107, 95, 0.11);
  color: #ff6b5f;
}

.lw-activity-yellow {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.lw-activity-blue {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.lw-activity-mint {
  background: rgba(98, 199, 176, 0.13);
  color: #0b9b80;
}

.lw-activity-purple {
  background: rgba(139, 124, 246, 0.11);
  color: #8b7cf6;
}

.lw-activity-orange {
  background: rgba(249, 115, 22, 0.11);
  color: #f97316;
}

/* Card Footer */

.lw-activity-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 25px;
  padding-top: 20px;

  border-top: 1px solid rgba(23, 35, 60, 0.07);

  color: #17233c;

  font-size: 0.82rem;
  font-weight: 850;
}

.lw-activity-card-footer i {
  color: #f59e0b;
}

/* =========================================
   FLOATING ICONS
========================================= */

.lw-activity-floating {
  position: absolute;

  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 17px;

  background: #fff;

  box-shadow: 0 15px 35px rgba(23, 35, 60, 0.13);

  font-size: 1.15rem;
}

.floating-one {
  left: 3%;
  top: 13%;

  color: #ff6b5f;

  animation: lwActivityFloatOne 4s ease-in-out infinite;
}

.floating-two {
  right: 4%;
  top: 28%;

  color: #62c7b0;

  animation: lwActivityFloatTwo 4.5s ease-in-out infinite;
}

.floating-three {
  right: 10%;
  bottom: 8%;

  color: #f59e0b;

  animation: lwActivityFloatThree 4.2s ease-in-out infinite;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes lwActivityContentIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

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

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

@keyframes lwActivityFloatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes lwActivityFloatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-12px) rotate(-3deg);
  }
}

@keyframes lwActivityFloatThree {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-9px) rotate(5deg);
  }
}

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

@media (max-width: 900px) {
  .lw-activity-hero {
    padding: 60px 0 70px;
  }

  .lw-activity-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .lw-activity-hero-content {
    text-align: center;
  }

  .lw-activity-eyebrow {
    justify-content: center;
  }

  .lw-activity-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-activity-hero-visual {
    min-height: 440px;
  }

  .lw-activity-main-card {
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .lw-activity-hero {
    padding: 48px 0 58px;
  }

  .lw-activity-hero h1 {
    font-size: 2.55rem;
  }

  .lw-activity-hero-content > p {
    font-size: 0.98rem;
  }

  .lw-activity-hero-visual {
    min-height: 390px;
  }

  .lw-activity-main-card {
    padding: 20px;

    border-radius: 24px;
  }

  .lw-activity-card-top {
    margin-bottom: 19px;
  }

  .lw-activity-card-top span {
    font-size: 3rem;
  }

  .lw-activity-icon-grid {
    gap: 9px;
  }

  .lw-activity-icon-card {
    border-radius: 15px;

    font-size: 1.3rem;
  }

  .lw-activity-floating {
    width: 43px;
    height: 43px;

    border-radius: 13px;

    font-size: 0.95rem;
  }

  .floating-one {
    left: 0;
  }

  .floating-two {
    right: 0;
  }

  .floating-three {
    right: 3%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-activity-hero-content,
  .lw-activity-hero-visual,
  .lw-activity-floating {
    animation: none;
  }

  .lw-activity-main-card,
  .lw-activity-icon-card {
    transition: none;
  }
}

/* =========================================
   ACTIVITY CLUB — ACTIVITIES SECTION
========================================= */

.lw-activity-section {
  margin-bottom: 75px;
}

.lw-activity-sports {
  margin-bottom: 80px;
}

/* =========================================
   SECTION HEADING
========================================= */

.lw-activity-section-heading {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 28px;
}

.lw-activity-heading-icon {
  flex: 0 0 50px;

  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 16px;

  font-size: 1.15rem;
}

.lw-heading-coral {
  background: rgba(255, 107, 95, 0.11);
  color: #ff6b5f;
}

.lw-heading-mint {
  background: rgba(98, 199, 176, 0.13);
  color: #0b9b80;
}

.lw-activity-section-heading span {
  display: block;

  margin-bottom: 4px;

  color: #94a3b8;

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lw-activity-section-heading h2 {
  margin: 0;

  color: #17233c;

  font-size: clamp(1.7rem, 3vw, 2.35rem);

  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* =========================================
   ACTIVITY CARD GRID
========================================= */

.lw-activity-card-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.lw-activity-item {
  position: relative;

  min-height: 190px;

  padding: 23px;

  border: 1px solid rgba(23, 35, 60, 0.07);
  border-radius: 22px;

  background: #fff;

  box-shadow: 0 8px 25px rgba(23, 35, 60, 0.045);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.lw-activity-item::after {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  right: -45px;
  bottom: -45px;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.07);

  transition: transform 0.4s ease;
}

.lw-activity-item:hover {
  transform: translateY(-8px);

  border-color: rgba(98, 199, 176, 0.28);

  box-shadow: 0 20px 40px rgba(23, 35, 60, 0.1);
}

.lw-activity-item:hover::after {
  transform: scale(1.5);
}

/* Activity Icon */

.lw-activity-item-icon {
  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  margin-bottom: 19px;

  border-radius: 14px;

  font-size: 1rem;

  transition: transform 0.35s ease;
}

.lw-activity-item:hover .lw-activity-item-icon {
  transform: rotate(-7deg) scale(1.08);
}

.lw-icon-coral {
  background: rgba(255, 107, 95, 0.11);
  color: #ff6b5f;
}

.lw-icon-yellow {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.lw-icon-blue {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.lw-icon-purple {
  background: rgba(139, 124, 246, 0.11);
  color: #8b7cf6;
}

.lw-icon-mint {
  background: rgba(98, 199, 176, 0.13);
  color: #0b9b80;
}

/* Text */

.lw-activity-item h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 7px;

  color: #17233c;

  font-size: 0.98rem;
  font-weight: 900;
}

.lw-activity-item p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #64748b;

  font-size: 0.82rem;
  line-height: 1.6;
}

/* =========================================
   PRICING SECTION
========================================= */

.lw-activity-pricing {
  position: relative;

  padding: 38px;

  border-radius: 30px;

  background: #17233c;

  box-shadow: 0 25px 60px rgba(23, 35, 60, 0.15);

  overflow: hidden;
}

.lw-activity-pricing::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -120px;
  top: -130px;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.1);
}

.lw-activity-pricing::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: rgba(255, 107, 95, 0.08);
}

/* Pricing Header */

.lw-activity-pricing-header {
  position: relative;
  z-index: 2;

  text-align: center;

  margin-bottom: 32px;
}

.lw-activity-pricing-label {
  display: inline-flex;

  padding: 8px 13px;

  border: 1.5px dashed #62c7b0;
  border-radius: 999px;

  color: #62c7b0;

  font-size: 0.73rem;
  font-weight: 900;

  letter-spacing: 0.06em;
}

.lw-activity-pricing-header h2 {
  margin: 15px 0 9px;

  color: #fff;

  font-size: clamp(1.9rem, 3vw, 2.6rem);

  letter-spacing: -0.035em;
}

.lw-activity-pricing-header p {
  margin: 0;

  color: #aeb9ca;

  font-size: 0.9rem;
}

/* Price Cards */

.lw-activity-price-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.lw-activity-price-card {
  position: relative;

  padding: 27px;

  border-radius: 23px;

  background: #fff;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.lw-activity-price-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.lw-price-coral {
  border-top: 4px solid #ff6b5f;
}

.lw-price-blue {
  border-top: 4px solid #0284c7;
}

/* Price Card Top */

.lw-activity-price-top {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;
}

.lw-activity-price-icon {
  flex: 0 0 43px;

  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  font-size: 0.95rem;
}

.lw-price-coral .lw-activity-price-icon {
  background: rgba(255, 107, 95, 0.11);
  color: #ff6b5f;
}

.lw-price-blue .lw-activity-price-icon {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.lw-activity-price-top > span {
  color: #17233c;

  font-size: 0.98rem;
  font-weight: 900;
}

/* Price */

.lw-activity-price {
  display: flex;
  align-items: baseline;
  gap: 7px;

  margin-bottom: 10px;
}

.lw-activity-price strong {
  color: #17233c;

  font-size: 2.55rem;
  font-weight: 950;

  line-height: 1;

  letter-spacing: -0.045em;
}

.lw-activity-price small {
  color: #64748b;

  font-size: 0.78rem;
  font-weight: 700;
}

.lw-activity-price-card > p {
  min-height: 54px;

  margin: 0 0 20px;

  color: #64748b;

  font-size: 0.84rem;
  line-height: 1.65;
}

/* Pricing CTA */

.lw-activity-price-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  box-sizing: border-box;

  padding: 13px 16px;

  border-radius: 13px;

  color: #fff !important;

  text-decoration: none !important;

  font-size: 0.83rem;
  font-weight: 850;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-price-coral .lw-activity-price-btn {
  background: #ff6b5f;
}

.lw-price-blue .lw-activity-price-btn {
  background: #0284c7;
}

.lw-activity-price-btn span {
  transition: transform 0.3s ease;
}

.lw-activity-price-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 22px rgba(23, 35, 60, 0.14);
}

.lw-activity-price-btn:hover span {
  transform: translateX(4px);
}

/* Pricing Note */

.lw-activity-price-note {
  position: relative;
  z-index: 2;

  margin: 20px 0 0;

  color: #94a3b8;

  font-size: 0.76rem;

  text-align: center;
}

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

@media (max-width: 1000px) {
  .lw-activity-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .lw-activity-section {
    margin-bottom: 55px;
  }

  .lw-activity-section-heading {
    align-items: flex-start;
  }

  .lw-activity-heading-icon {
    flex-basis: 43px;

    width: 43px;
    height: 43px;
  }

  .lw-activity-section-heading h2 {
    font-size: 1.55rem;
  }

  .lw-activity-card-grid {
    grid-template-columns: 1fr;
  }

  .lw-activity-item {
    min-height: auto;
  }

  .lw-activity-pricing {
    padding: 25px 18px;
    border-radius: 23px;
  }

  .lw-activity-price-grid {
    grid-template-columns: 1fr;
  }

  .lw-activity-price-card > p {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-activity-item,
  .lw-activity-item-icon,
  .lw-activity-price-card,
  .lw-activity-price-btn {
    transition: none;
  }
}

/* =========================================
   GALLERY PAGE — HERO
========================================= */

.lw-gallery-hero {
  position: relative;
  overflow: hidden;

  padding: 78px 0 85px;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(98, 199, 176, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(255, 107, 95, 0.13),
      transparent 30%
    ),
    #fff9f2;
}

.lw-gallery-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(23, 35, 60, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 60, 0.025) 1px, transparent 1px);

  background-size: 42px 42px;
}

.lw-gallery-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.lw-gallery-orb-one {
  width: 170px;
  height: 170px;

  right: -60px;
  bottom: -70px;

  background: rgba(139, 124, 246, 0.09);
}

.lw-gallery-orb-two {
  width: 100px;
  height: 100px;

  left: 7%;
  top: 20%;

  background: rgba(255, 107, 95, 0.08);
}

/* Hero Content */

.lw-gallery-hero-content {
  position: relative;
  z-index: 2;

  max-width: 780px;
  margin: auto;

  text-align: center;

  animation: lwGalleryHeroIn 0.8s ease both;
}

.lw-gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 19px;
  padding: 9px 15px;

  border: 1.5px dashed #62c7b0;
  border-radius: 999px;

  color: #17233c;

  background: rgba(98, 199, 176, 0.05);

  font-size: 0.77rem;
  font-weight: 900;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lw-gallery-eyebrow span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #62c7b0;

  box-shadow: 0 0 0 5px rgba(98, 199, 176, 0.11);
}

.lw-gallery-hero h1 {
  margin: 0 0 18px;

  color: #17233c;

  font-size: clamp(2.8rem, 5vw, 4.8rem);

  line-height: 1.02;

  letter-spacing: -0.05em;
}

.lw-gallery-hero h1 span {
  color: #ff6b5f;
}

.lw-gallery-hero-content > p {
  max-width: 650px;

  margin: 0 auto;

  color: #64748b;

  font-size: 1.05rem;

  line-height: 1.8;
}

/* =========================================
   GALLERY FILTER BAR
========================================= */

.lw-gallery-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-bottom: 30px;
}

.lw-gallery-filter-intro {
  flex-shrink: 0;
}

.lw-gallery-filter-intro span {
  display: block;

  margin-bottom: 3px;

  color: #94a3b8;

  font-size: 0.68rem;
  font-weight: 900;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lw-gallery-filter-intro strong {
  color: #17233c;

  font-size: 1.15rem;
  font-weight: 900;
}

/* Filter Buttons */

.lw-gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  flex-wrap: wrap;

  gap: 8px;
}

.lw-gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 10px 14px;

  border: 1px solid rgba(23, 35, 60, 0.08);
  border-radius: 999px;

  background: #fff;

  color: #64748b;

  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-gallery-filter i {
  font-size: 0.72rem;
}

.lw-gallery-filter:hover {
  transform: translateY(-2px);

  color: #17233c;

  border-color: rgba(98, 199, 176, 0.35);

  box-shadow: 0 8px 20px rgba(23, 35, 60, 0.06);
}

.lw-gallery-filter.active {
  background: #17233c;

  color: #fff;

  border-color: #17233c;

  box-shadow: 0 8px 20px rgba(23, 35, 60, 0.14);
}

.lw-gallery-filter.active i {
  color: #62c7b0;
}

/* =========================================
   GALLERY GRID
========================================= */

.lw-gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 285px;

  gap: 16px;
}

.lw-gallery-item {
  position: relative;

  overflow: hidden;

  min-height: 0;

  border-radius: 22px;

  background: #e2e8f0;

  cursor: pointer;

  box-shadow: 0 8px 25px rgba(23, 35, 60, 0.06);

  animation: lwGalleryItemIn 0.55s ease both;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.lw-gallery-item.lw-gallery-large {
  grid-row: span 2;
}

.lw-gallery-item:hover {
  transform: translateY(-7px);

  box-shadow: 0 22px 45px rgba(23, 35, 60, 0.14);
}

.lw-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lw-gallery-item:hover img {
  transform: scale(1.07);
}

/* =========================================
   IMAGE OVERLAY
========================================= */

.lw-gallery-overlay {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 15px;

  min-height: 45%;

  padding: 22px;

  box-sizing: border-box;

  background: linear-gradient(
    to top,
    rgba(23, 35, 60, 0.9),
    rgba(23, 35, 60, 0.35),
    transparent
  );

  color: #fff;

  opacity: 0;

  transform: translateY(12px);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.lw-gallery-item:hover .lw-gallery-overlay {
  opacity: 1;

  transform: translateY(0);
}

.lw-gallery-overlay span {
  display: block;

  margin-bottom: 5px;

  color: #62c7b0;

  font-size: 0.67rem;
  font-weight: 900;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-gallery-overlay strong {
  display: block;

  max-width: 260px;

  color: #fff;

  font-size: 0.95rem;
  line-height: 1.3;
}

.lw-gallery-view {
  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(7px);

  color: #fff;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.lw-gallery-item:hover .lw-gallery-view {
  transform: rotate(8deg);

  background: #ff6b5f;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes lwGalleryHeroIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes lwGalleryItemIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

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

@media (max-width: 1000px) {
  .lw-gallery-filter-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .lw-gallery-filter-bar {
    justify-content: flex-start;
  }

  .lw-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
}

@media (max-width: 600px) {
  .lw-gallery-hero {
    padding: 50px 0 60px;
  }

  .lw-gallery-hero h1 {
    font-size: 2.65rem;
  }

  .lw-gallery-hero-content > p {
    font-size: 0.92rem;
  }

  .lw-gallery-filter-wrap {
    gap: 18px;
  }

  .lw-gallery-filter-bar {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;

    padding-bottom: 5px;

    scrollbar-width: none;
  }

  .lw-gallery-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .lw-gallery-filter {
    flex: 0 0 auto;
  }

  .lw-gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 260px;

    gap: 12px;
  }

  .lw-gallery-item.lw-gallery-large {
    grid-row: span 1;
  }

  .lw-gallery-overlay {
    opacity: 1;
    transform: translateY(0);

    min-height: 42%;
  }

  .lw-gallery-item:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-gallery-hero-content,
  .lw-gallery-item {
    animation: none;
  }

  .lw-gallery-item,
  .lw-gallery-item img,
  .lw-gallery-overlay,
  .lw-gallery-view,
  .lw-gallery-filter {
    transition: none;
  }
}

/* =========================================
   ADMISSIONS — HERO
========================================= */

.lw-admissions-hero {
  position: relative;
  overflow: hidden;

  padding: 78px 0 88px;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(98, 199, 176, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 20%,
      rgba(255, 107, 95, 0.14),
      transparent 30%
    ),
    #fff9f2;
}

.lw-admissions-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(23, 35, 60, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 60, 0.025) 1px, transparent 1px);

  background-size: 42px 42px;
}

/* Decorative Orbs */

.lw-admissions-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lw-admissions-orb-one {
  width: 180px;
  height: 180px;

  right: -65px;
  bottom: -65px;

  background: rgba(139, 124, 246, 0.09);
}

.lw-admissions-orb-two {
  width: 100px;
  height: 100px;

  left: 5%;
  top: 15%;

  background: rgba(255, 107, 95, 0.08);
}

/* =========================================
   HERO GRID
========================================= */

.lw-admissions-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 75px;
}

/* =========================================
   HERO CONTENT
========================================= */

.lw-admissions-hero-content {
  animation: lwAdmissionsContentIn 0.8s ease both;
}

.lw-admissions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 9px 15px;

  border-radius: 999px;

  background: rgba(98, 199, 176, 0.12);

  color: #17233c;

  font-size: 0.77rem;
  font-weight: 900;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-admissions-eyebrow span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ff6b5f;

  box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.1);
}

.lw-admissions-hero h1 {
  max-width: 700px;

  margin: 0 0 22px;

  color: #17233c;

  font-size: clamp(2.7rem, 5vw, 4.7rem);

  line-height: 1.04;

  letter-spacing: -0.045em;
}

.lw-admissions-hero h1 span {
  display: block;
  color: #ff6b5f;
}

.lw-admissions-hero-content > p {
  max-width: 650px;

  margin: 0;

  color: #64748b;

  font-size: 1.06rem;

  line-height: 1.8;
}

/* =========================================
   HERO POINTS
========================================= */

.lw-admissions-hero-points {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 28px;
}

.lw-admissions-hero-points > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 13px;

  border: 1px solid rgba(23, 35, 60, 0.07);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.78);

  color: #17233c;

  font-size: 0.77rem;
  font-weight: 800;

  box-shadow: 0 7px 20px rgba(23, 35, 60, 0.04);
}

.lw-admissions-hero-points i {
  color: #62c7b0;
}

/* =========================================
   HERO VISUAL
========================================= */

.lw-admissions-hero-visual {
  position: relative;

  min-height: 390px;

  display: grid;
  place-items: center;

  animation: lwAdmissionsVisualIn 0.9s 0.1s ease both;
}

.lw-admissions-visual-card {
  position: relative;

  width: min(100%, 430px);

  padding: 45px 38px;

  box-sizing: border-box;

  border-radius: 30px;

  background: #17233c;

  text-align: center;

  box-shadow: 0 30px 75px rgba(23, 35, 60, 0.18);

  transform: rotate(1.5deg);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.lw-admissions-visual-card:hover {
  transform: rotate(0deg) translateY(-8px);

  box-shadow: 0 38px 90px rgba(23, 35, 60, 0.22);
}

.lw-admissions-visual-card::before {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  right: -75px;
  top: -75px;

  border-radius: 50%;

  background: rgba(98, 199, 176, 0.12);
}

.lw-admissions-visual-icon {
  position: relative;
  z-index: 2;

  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  margin: 0 auto 22px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.1);

  color: #62c7b0;

  font-size: 1.55rem;
}

.lw-admissions-visual-card > span {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 9px;

  color: #62c7b0;

  font-size: 0.72rem;
  font-weight: 900;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lw-admissions-visual-card strong {
  position: relative;
  z-index: 2;

  display: block;

  color: #fff;

  font-size: 2rem;
  line-height: 1.15;

  letter-spacing: -0.03em;
}

.lw-admissions-visual-line {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;

  gap: 7px;

  margin: 22px 0;
}

.lw-admissions-visual-line span {
  width: 7px;
  height: 7px;

  border-radius: 50%;
}

.lw-admissions-visual-line span:nth-child(1) {
  background: #ff6b5f;
}

.lw-admissions-visual-line span:nth-child(2) {
  background: #62c7b0;
}

.lw-admissions-visual-line span:nth-child(3) {
  background: #f59e0b;
}

.lw-admissions-visual-card p {
  position: relative;
  z-index: 2;

  max-width: 300px;

  margin: auto;

  color: #b8c2d3;

  font-size: 0.88rem;

  line-height: 1.7;
}

/* Floating Elements */

.lw-admissions-floating {
  position: absolute;

  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  border-radius: 17px;

  background: #fff;

  box-shadow: 0 15px 35px rgba(23, 35, 60, 0.14);

  font-size: 1.05rem;
}

.lw-admissions-float-one {
  left: 2%;
  top: 15%;

  color: #ff6b5f;

  animation: lwAdmissionsFloatOne 4s ease-in-out infinite;
}

.lw-admissions-float-two {
  right: 2%;
  bottom: 13%;

  color: #f59e0b;

  animation: lwAdmissionsFloatTwo 4.5s ease-in-out infinite;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes lwAdmissionsContentIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

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

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

@keyframes lwAdmissionsFloatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@keyframes lwAdmissionsFloatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-9px) rotate(-4deg);
  }
}

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

@media (max-width: 900px) {
  .lw-admissions-hero {
    padding: 60px 0 70px;
  }

  .lw-admissions-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .lw-admissions-hero-content {
    text-align: center;
  }

  .lw-admissions-eyebrow {
    justify-content: center;
  }

  .lw-admissions-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-admissions-hero-points {
    justify-content: center;
  }

  .lw-admissions-hero-visual {
    min-height: 350px;
  }

  .lw-admissions-visual-card {
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .lw-admissions-hero {
    padding: 48px 0 58px;
  }

  .lw-admissions-hero h1 {
    font-size: 2.55rem;
  }

  .lw-admissions-hero-content > p {
    font-size: 0.96rem;
  }

  .lw-admissions-hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .lw-admissions-hero-points > div {
    justify-content: center;
  }

  .lw-admissions-hero-visual {
    min-height: 320px;
  }

  .lw-admissions-visual-card {
    padding: 34px 23px;
    border-radius: 24px;
  }

  .lw-admissions-visual-card strong {
    font-size: 1.65rem;
  }

  .lw-admissions-floating {
    width: 43px;
    height: 43px;

    border-radius: 13px;

    font-size: 0.9rem;
  }

  .lw-admissions-float-one {
    left: -2px;
  }

  .lw-admissions-float-two {
    right: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-admissions-hero-content,
  .lw-admissions-hero-visual,
  .lw-admissions-floating {
    animation: none;
  }

  .lw-admissions-visual-card {
    transition: none;
  }
}

/* =========================================================
   ADMISSIONS PAGE — PROCESS
========================================================= */

.lw-admission-process {
  padding: 100px 6%;
  background: var(--lw-cream, #fff9f2);
}

.lw-admission-process-head {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.lw-section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff6b5f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lw-admission-process-head h2,
.lw-admission-form-heading h2 {
  margin: 0 0 14px;
  color: #17233c;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
}

.lw-admission-process-head p,
.lw-admission-form-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.lw-admission-steps {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lw-admission-step {
  position: relative;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(23, 35, 60, 0.08);
  border-radius: 26px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.lw-admission-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(23, 35, 60, 0.12);
}

.lw-admission-step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(23, 35, 60, 0.07);
  font-family: "Fredoka", sans-serif;
  font-size: 58px;
  font-weight: 700;
}

.lw-admission-step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 18px;
  background: #e8f8f4;
  color: #62c7b0;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.lw-admission-step:hover .lw-admission-step-icon {
  transform: rotate(-7deg) scale(1.08);
}

.lw-admission-step-content span {
  color: #ff6b5f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lw-admission-step-content h3 {
  margin: 8px 0 12px;
  color: #17233c;
  font-family: "Fredoka", sans-serif;
  font-size: 23px;
}

.lw-admission-step-content p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   ADMISSIONS PAGE — ASSISTANCE
========================================================= */

.lw-admission-assistance {
  max-width: 1180px;
  margin: 0 auto 90px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #17233c;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(23, 35, 60, 0.16);
}

.lw-assistance-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #62c7b0;
  color: #ffffff;
  font-size: 25px;
}

.lw-assistance-content {
  flex: 1;
}

.lw-assistance-content span {
  color: #62c7b0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lw-assistance-content h3 {
  margin: 5px 0;
  color: #ffffff;
  font-family: "Fredoka", sans-serif;
  font-size: 21px;
}

.lw-assistance-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.lw-assistance-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #ff6b5f;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-assistance-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 107, 95, 0.25);
}

/* =========================================================
   ADMISSIONS PAGE — FORM
========================================================= */

.lw-admission-form-section {
  padding: 100px 6%;
  background: #ffffff;
}

.lw-admission-form-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.lw-admission-form-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border-radius: 30px;
  background: #fff9f2;
  border: 1px solid rgba(23, 35, 60, 0.08);
  box-shadow: 0 25px 70px rgba(23, 35, 60, 0.1);
}

/* Left side */

.lw-form-side {
  position: relative;
  padding: 48px;
  background: #17233c;
  overflow: hidden;
}

.lw-form-side::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(98, 199, 176, 0.15);
}

.lw-form-side-badge {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 20px;
  background: rgba(255, 107, 95, 0.15);
  color: #ff6b5f;
  font-size: 24px;
}

.lw-form-side h3 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: "Fredoka", sans-serif;
  font-size: 30px;
}

.lw-form-side > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.lw-form-side-points {
  margin-top: 35px;
  display: grid;
  gap: 15px;
}

.lw-form-side-points div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.lw-form-side-points i {
  color: #62c7b0;
}

/* Form */

.lw-enquiry-form {
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  background: #ffffff;
}

.lw-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.lw-form-field label {
  color: #17233c;
  font-size: 13px;
  font-weight: 800;
}

.lw-input-wrap {
  position: relative;
}

.lw-input-wrap > i {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 1;
  transform: translateY(-50%);
  color: #8b7cf6;
  pointer-events: none;
}

.lw-input-wrap input,
.lw-input-wrap select,
.lw-input-wrap textarea {
  width: 100%;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  background: #fbfcfe;
  color: #17233c;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.lw-input-wrap input,
.lw-input-wrap select {
  height: 52px;
  padding: 0 16px 0 45px;
}

.lw-input-wrap textarea {
  min-height: 135px;
  padding: 16px 16px 16px 45px;
  resize: vertical;
}

.lw-input-wrap input:focus,
.lw-input-wrap select:focus,
.lw-input-wrap textarea:focus {
  border-color: #62c7b0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(98, 199, 176, 0.12);
}

.lw-textarea-wrap > i {
  top: 22px;
  transform: none;
}

.lw-form-submit {
  margin-top: 5px;
}

.lw-form-submit button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 15px;
  background: #ff6b5f;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-form-submit button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 107, 95, 0.25);
}

.lw-form-submit button i {
  margin-right: 8px;
}

.lw-form-submit small {
  display: block;
  margin-top: 10px;
  color: #94a3b8;
  text-align: center;
  font-size: 11px;
}

/* =========================================================
   ADMISSIONS PAGE — RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .lw-admission-steps {
    grid-template-columns: 1fr;
  }

  .lw-admission-form-wrap {
    grid-template-columns: 1fr;
  }

  .lw-form-side {
    padding: 38px;
  }

  .lw-enquiry-form {
    padding: 38px;
  }

  .lw-admission-assistance {
    margin-left: 6%;
    margin-right: 6%;
  }
}

@media (max-width: 650px) {
  .lw-admission-process,
  .lw-admission-form-section {
    padding: 70px 5%;
  }

  .lw-admission-step {
    padding: 28px;
  }

  .lw-admission-assistance {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .lw-assistance-btn {
    width: 100%;
    justify-content: center;
  }

  .lw-enquiry-form {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .lw-form-full {
    grid-column: auto;
  }

  .lw-form-side {
    padding: 30px 25px;
  }
}

/* =========================================================
   CONTACT PAGE
   Premium Contact Layout
========================================================= */

/* =========================================================
   CONTACT — HERO
========================================================= */

.lw-contact-hero {
  position: relative;
  min-height: 470px;
  padding: 90px 6%;
  overflow: hidden;

  background: linear-gradient(135deg, #fff9f2 0%, #ffffff 48%, #f4f1ff 100%);
}

/* Background Orbs */

.lw-contact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lw-contact-orb-one {
  width: 190px;
  height: 190px;

  top: 35px;
  right: 7%;

  background: rgba(98, 199, 176, 0.13);
}

.lw-contact-orb-two {
  width: 140px;
  height: 140px;

  left: -40px;
  bottom: -30px;

  background: rgba(139, 124, 246, 0.1);
}

/* Hero Grid */

.lw-contact-hero-grid {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  min-height: 370px;

  margin: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 70px;
}

/* Hero Content */

.lw-contact-hero-content {
  max-width: 650px;
}

.lw-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(98, 199, 176, 0.12);

  color: #17233c;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lw-contact-eyebrow span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff6b5f;

  box-shadow: 0 0 0 5px rgba(255, 107, 95, 0.1);
}

/* Hero Heading */

.lw-contact-hero-content h1 {
  margin: 0;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: clamp(44px, 5vw, 70px);

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -1px;
}

.lw-contact-hero-content h1 span {
  display: block;

  color: #ff6b5f;
}

/* Hero Description */

.lw-contact-hero-content > p {
  max-width: 590px;

  margin: 25px 0 0;

  color: #64748b;

  font-size: 16px;

  line-height: 1.8;
}

/* Hero Actions */

.lw-contact-hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 13px;

  margin-top: 30px;
}

.lw-contact-primary-btn,
.lw-contact-secondary-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 48px;

  padding: 0 21px;

  border-radius: 14px;

  font-size: 14px;

  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Primary Button */

.lw-contact-primary-btn {
  background: #ff6b5f;

  color: #ffffff;

  box-shadow: 0 12px 28px rgba(255, 107, 95, 0.2);
}

.lw-contact-primary-btn:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow: 0 18px 34px rgba(255, 107, 95, 0.28);
}

/* Secondary Button */

.lw-contact-secondary-btn {
  background: #ffffff;

  color: #17233c;

  border: 1px solid rgba(23, 35, 60, 0.1);
}

.lw-contact-secondary-btn:hover {
  color: #17233c;

  transform: translateY(-4px);

  border-color: #62c7b0;

  box-shadow: 0 12px 28px rgba(23, 35, 60, 0.08);
}

/* =========================================================
   CONTACT — HERO VISUAL
========================================================= */

.lw-contact-hero-visual {
  position: relative;

  min-height: 350px;

  display: flex;

  align-items: center;
  justify-content: center;
}

/* Main Card */

.lw-contact-visual-card {
  position: relative;
  z-index: 2;

  width: min(100%, 430px);

  min-height: 300px;

  padding: 42px;

  border-radius: 30px;

  background: #17233c;

  box-shadow: 0 30px 70px rgba(23, 35, 60, 0.2);

  transform: rotate(2deg);

  animation: lwContactCardFloat 5s ease-in-out infinite;
}

@keyframes lwContactCardFloat {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }

  50% {
    transform: rotate(1deg) translateY(-8px);
  }
}

/* Visual Icon */

.lw-contact-visual-icon {
  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  margin-bottom: 24px;

  border-radius: 19px;

  background: rgba(98, 199, 176, 0.16);

  color: #62c7b0;

  font-size: 25px;
}

/* Label */

.lw-contact-visual-label {
  display: block;

  margin-bottom: 7px;

  color: #62c7b0;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

/* Visual Heading */

.lw-contact-visual-card h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Fredoka", sans-serif;

  font-size: 30px;

  line-height: 1.15;
}

/* Decorative Dots */

.lw-contact-visual-line {
  display: flex;

  align-items: center;

  gap: 5px;

  margin: 22px 0;
}

.lw-contact-visual-line span {
  width: 7px;
  height: 7px;

  border-radius: 50%;
}

.lw-contact-visual-line span:nth-child(1) {
  background: #ff6b5f;
}

.lw-contact-visual-line span:nth-child(2) {
  background: #62c7b0;
}

.lw-contact-visual-line span:nth-child(3) {
  background: #8b7cf6;
}

/* Contact Details */

.lw-contact-visual-info {
  display: grid;

  gap: 14px;
}

.lw-contact-visual-info div {
  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
}

.lw-contact-visual-info i {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  flex: 0 0 30px;

  border-radius: 9px;

  background: rgba(255, 255, 255, 0.08);

  color: #62c7b0;
}

/* =========================================================
   CONTACT — FLOATING DECORATIONS
========================================================= */

.lw-contact-floating {
  position: absolute;

  z-index: 4;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  background: #ffffff;

  box-shadow: 0 12px 30px rgba(23, 35, 60, 0.14);

  font-size: 18px;

  animation: lwContactFloat 4s ease-in-out infinite;
}

.lw-contact-float-one {
  top: 25px;
  left: 3%;

  color: #ff6b5f;
}

.lw-contact-float-two {
  right: 1%;
  bottom: 25px;

  color: #8b7cf6;

  animation-delay: 1.2s;
}

/* =========================================================
   CONTACT — MAIN SECTION
========================================================= */

.lw-contact-main {
  padding: 100px 6%;

  background: #f8fafc;
}

.lw-contact-main-grid {
  max-width: 1180px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  align-items: start;

  gap: 55px;
}

/* =========================================================
   CONTACT — SECTION HEADING
========================================================= */

.lw-contact-section-heading {
  margin-bottom: 30px;
}

.lw-contact-section-heading h2 {
  margin: 0 0 15px;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.05;
}

.lw-contact-section-heading h2 span {
  display: block;

  color: #ff6b5f;
}

.lw-contact-section-heading p {
  max-width: 560px;

  margin: 0;

  color: #64748b;

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   CONTACT — INFORMATION CARDS
========================================================= */

.lw-contact-info {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.lw-contact-info-card {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 24px;

  background: #ffffff;

  border: 1px solid rgba(23, 35, 60, 0.07);

  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(23, 35, 60, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lw-contact-info-card:hover {
  transform: translateY(-5px);

  border-color: rgba(98, 199, 176, 0.3);

  box-shadow: 0 18px 38px rgba(23, 35, 60, 0.09);
}

/* Info Icon */

.lw-contact-info-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  flex: 0 0 52px;

  border-radius: 16px;

  font-size: 20px;
}

.lw-contact-icon-location {
  background: rgba(255, 107, 95, 0.11);

  color: #ff6b5f;
}

.lw-contact-icon-phone {
  background: rgba(98, 199, 176, 0.13);

  color: #62c7b0;
}

.lw-contact-icon-email {
  background: rgba(139, 124, 246, 0.12);

  color: #8b7cf6;
}

/* Info Content */

.lw-contact-info-content {
  min-width: 0;

  flex: 1;
}

.lw-contact-card-label {
  display: block;

  margin-bottom: 5px;

  color: #94a3b8;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.lw-contact-info-content h3 {
  margin: 0 0 7px;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: 20px;
}

.lw-contact-info-content p {
  margin: 0;

  color: #64748b;

  font-size: 14px;

  line-height: 1.7;
}

/* Phone Rows */

.lw-contact-number-row {
  display: flex;

  align-items: center;

  gap: 6px;

  margin-top: 5px;

  color: #64748b;

  font-size: 14px;
}

.lw-contact-number-row a {
  color: #17233c;

  font-weight: 800;

  text-decoration: none;

  transition: color 0.25s ease;
}

.lw-contact-number-row a:hover {
  color: #ff6b5f;
}

/* Email */

.lw-contact-email a {
  color: #17233c;

  font-weight: 700;

  text-decoration: none;

  word-break: break-word;

  transition: color 0.25s ease;
}

.lw-contact-email a:hover {
  color: #8b7cf6;
}

/* =========================================================
   CONTACT — FORM COLUMN
========================================================= */

.lw-contact-form-column {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

/* Form Card */

.lw-contact-form-card {
  padding: 36px;

  background: #ffffff;

  border: 1px solid rgba(23, 35, 60, 0.07);

  border-radius: 28px;

  box-shadow: 0 20px 55px rgba(23, 35, 60, 0.08);
}

/* Form Header */

.lw-contact-form-header {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 28px;
}

.lw-contact-form-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  flex: 0 0 52px;

  border-radius: 16px;

  background: rgba(255, 107, 95, 0.11);

  color: #ff6b5f;

  font-size: 21px;
}

.lw-contact-form-header span {
  display: block;

  margin-bottom: 3px;

  color: #62c7b0;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.lw-contact-form-header h2 {
  margin: 0;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: 27px;
}

/* =========================================================
   CONTACT — FORM
========================================================= */

.lw-contact-form {
  display: flex;

  flex-direction: column;

  gap: 19px;
}

.lw-contact-field {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.lw-contact-field label {
  color: #17233c;

  font-size: 13px;

  font-weight: 800;
}

/* Input Wrapper */

.lw-contact-input-wrap {
  position: relative;
}

.lw-contact-input-wrap > i {
  position: absolute;

  z-index: 1;

  top: 50%;
  left: 16px;

  transform: translateY(-50%);

  color: #8b7cf6;

  pointer-events: none;
}

/* Inputs */

.lw-contact-input-wrap input,
.lw-contact-input-wrap textarea {
  width: 100%;

  border: 1px solid #e3e8ef;

  border-radius: 14px;

  background: #fbfcfe;

  color: #17233c;

  font-family: "Nunito", sans-serif;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.lw-contact-input-wrap input {
  height: 52px;

  padding: 0 16px 0 45px;
}

.lw-contact-input-wrap textarea {
  min-height: 135px;

  padding: 15px 16px 15px 45px;

  resize: vertical;
}

/* Focus */

.lw-contact-input-wrap input:focus,
.lw-contact-input-wrap textarea:focus {
  border-color: #62c7b0;

  background: #ffffff;

  box-shadow: 0 0 0 4px rgba(98, 199, 176, 0.11);
}

/* Textarea Icon */

.lw-contact-textarea-wrap > i {
  top: 21px;

  transform: none;
}

/* =========================================================
   CONTACT — FORM SUBMIT
========================================================= */

.lw-contact-submit {
  margin-top: 4px;
}

.lw-contact-submit button {
  width: 100%;

  min-height: 53px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  border: 0;

  border-radius: 15px;

  background: #ff6b5f;

  color: #ffffff;

  font-family: "Nunito", sans-serif;

  font-size: 15px;

  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lw-contact-submit button:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(255, 107, 95, 0.25);
}

.lw-contact-submit small {
  display: block;

  margin-top: 9px;

  color: #94a3b8;

  text-align: center;

  font-size: 11px;

  line-height: 1.5;
}

/* =========================================================
   CONTACT — MAP
========================================================= */

.lw-contact-map-card {
  padding: 24px;

  background: #ffffff;

  border: 1px solid rgba(23, 35, 60, 0.07);

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(23, 35, 60, 0.07);
}

/* Map Header */

.lw-contact-map-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 18px;
}

.lw-contact-map-header span {
  display: block;

  margin-bottom: 4px;

  color: #62c7b0;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.lw-contact-map-header h3 {
  margin: 0;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: 21px;
}

.lw-contact-map-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  flex: 0 0 42px;

  border-radius: 13px;

  background: rgba(255, 107, 95, 0.1);

  color: #ff6b5f;
}

/* Map */

.lw-contact-map {
  height: 250px;

  overflow: hidden;

  border-radius: 18px;

  background: #e2e8f0;
}

.lw-contact-map iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}

/* =========================================================
   CONTACT — TABLET
========================================================= */

@media (max-width: 900px) {
  .lw-contact-hero {
    padding: 75px 6%;
  }

  .lw-contact-hero-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .lw-contact-hero-content {
    max-width: 700px;

    margin: auto;

    text-align: center;
  }

  .lw-contact-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-contact-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lw-contact-hero-actions {
    justify-content: center;
  }

  .lw-contact-hero-visual {
    min-height: 330px;
  }

  .lw-contact-main {
    padding: 80px 6%;
  }

  .lw-contact-main-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}

/* =========================================================
   CONTACT — MOBILE
========================================================= */

@media (max-width: 600px) {
  .lw-contact-hero {
    min-height: auto;

    padding: 65px 5%;
  }

  .lw-contact-hero-content h1 {
    font-size: 43px;

    letter-spacing: -0.5px;
  }

  .lw-contact-hero-content > p {
    font-size: 14px;
  }

  .lw-contact-hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .lw-contact-primary-btn,
  .lw-contact-secondary-btn {
    width: 100%;
  }

  .lw-contact-hero-visual {
    min-height: 300px;
  }

  .lw-contact-visual-card {
    width: 92%;

    min-height: 280px;

    padding: 30px;

    border-radius: 24px;
  }

  .lw-contact-visual-card h3 {
    font-size: 25px;
  }

  .lw-contact-floating {
    width: 42px;
    height: 42px;
  }

  .lw-contact-float-one {
    left: 0;
    top: 15px;
  }

  .lw-contact-float-two {
    right: 0;
    bottom: 10px;
  }

  .lw-contact-main {
    padding: 65px 5%;
  }

  .lw-contact-section-heading h2 {
    font-size: 35px;
  }

  .lw-contact-info-card {
    padding: 20px;

    gap: 14px;
  }

  .lw-contact-info-icon {
    width: 46px;
    height: 46px;

    flex-basis: 46px;

    border-radius: 14px;

    font-size: 18px;
  }

  .lw-contact-form-card {
    padding: 24px 20px;

    border-radius: 23px;
  }

  .lw-contact-form-header h2 {
    font-size: 23px;
  }

  .lw-contact-map-card {
    padding: 18px;

    border-radius: 22px;
  }

  .lw-contact-map {
    height: 220px;
  }
}

/* =========================================================
   HOME PAGE — ACTIVITY VIDEOS
========================================================= */

.lw-video-section {
  position: relative;
  padding: 105px 6%;
  overflow: hidden;

  background: linear-gradient(135deg, #fff9f2 0%, #ffffff 52%, #f4f1ff 100%);
}

/* Background Decorations */

.lw-video-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lw-video-shape-one {
  width: 220px;
  height: 220px;

  top: -90px;
  right: 5%;

  background: rgba(98, 199, 176, 0.1);
}

.lw-video-shape-two {
  width: 170px;
  height: 170px;

  bottom: -80px;
  left: -50px;

  background: rgba(139, 124, 246, 0.09);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.lw-video-heading {
  position: relative;
  z-index: 2;

  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}

.lw-video-heading h2 {
  margin: 0;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: clamp(36px, 4vw, 54px);

  line-height: 1.05;
}

.lw-video-heading h2 span {
  color: #ff6b5f;
}

.lw-video-heading p {
  max-width: 620px;

  margin: 17px auto 0;

  color: #64748b;

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   VIDEO GRID
========================================================= */

.lw-video-grid {
  position: relative;
  z-index: 2;

  max-width: 1180px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;
}

/* =========================================================
   VIDEO CARD
========================================================= */

.lw-video-grid {
  width: min(100%, 1000px);
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.lw-video-card:hover {
  transform: translateY(-8px);

  border-color: rgba(98, 199, 176, 0.28);

  box-shadow: 0 25px 55px rgba(23, 35, 60, 0.12);
}

/* =========================================================
   VIDEO PLAYER
========================================================= */

.lw-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #17233c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #17233c;
}

/* =========================================================
   VIDEO CARD CONTENT
========================================================= */

.lw-video-card-content {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 20px 22px;
}

.lw-video-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  flex: 0 0 44px;

  border-radius: 13px;

  background: rgba(255, 107, 95, 0.1);

  color: #ff6b5f;

  font-size: 15px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.lw-video-card:hover .lw-video-icon {
  transform: scale(1.08) rotate(-5deg);

  background: rgba(98, 199, 176, 0.14);

  color: #62c7b0;
}

.lw-video-card-content h3 {
  margin: 0 0 3px;

  color: #17233c;

  font-family: "Fredoka", sans-serif;

  font-size: 19px;
}

.lw-video-card-content p {
  margin: 0;

  color: #94a3b8;

  font-size: 12px;

  font-weight: 700;
}

/* =========================================================
   VIDEO SECTION — TABLET
========================================================= */

@media (max-width: 800px) {
  .lw-video-section {
    padding: 80px 6%;
  }

  .lw-video-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   VIDEO SECTION — MOBILE
========================================================= */

@media (max-width: 600px) {
  .lw-video-section {
    padding: 70px 5%;
  }

  .lw-video-heading {
    margin-bottom: 38px;
  }

  .lw-video-heading h2 {
    font-size: 38px;
  }

  .lw-video-heading p {
    font-size: 14px;
  }

  .lw-video-grid {
    gap: 20px;
  }

  .lw-video-card {
    border-radius: 21px;
  }

  .lw-video-card-content {
    padding: 17px;
  }
}

@media (max-width: 900px) {
  .lw-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  .lw-video-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 22px;
  }

  .lw-video-player {
    aspect-ratio: 9 / 16;
  }
}

/* =========================================
   GALLERY — VIEW MORE BUTTON
========================================= */

.lw-gallery-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.lw-gallery-more-btn {
  border: 0;
  outline: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 15px 28px;

  background: #17233c;
  color: #ffffff;

  border-radius: 999px;

  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;

  box-shadow: 0 12px 28px rgba(23, 35, 60, 0.16);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.lw-gallery-more-btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.lw-gallery-more-btn:hover {
  background: #ff6b5f;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 107, 95, 0.22);
}

.lw-gallery-more-btn:hover i {
  transform: translateY(3px);
}

.lw-gallery-more-btn.hidden {
  display: none;
}

/* =========================================
   GALLERY — GENERATED ITEMS
========================================= */

.lw-gallery-item {
  cursor: pointer;
}

.lw-gallery-item img {
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.lw-gallery-item:hover img {
  transform: scale(1.04);
}

/* =========================================
   GALLERY — LIGHTBOX
========================================= */

.lw-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(10, 16, 30, 0.92);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.lw-gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lw-gallery-lightbox-content {
  position: relative;

  width: min(90vw, 1100px);
  height: min(88vh, 820px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-gallery-lightbox-content img {
  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 16px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);

  transform: scale(0.94);

  transition: transform 0.3s ease;
}

.lw-gallery-lightbox.active .lw-gallery-lightbox-content img {
  transform: scale(1);
}

/* =========================================
   LIGHTBOX — CLOSE
========================================= */

.lw-gallery-lightbox-close {
  position: absolute;

  top: 22px;
  right: 25px;

  width: 48px;
  height: 48px;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 20px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.lw-gallery-lightbox-close:hover {
  background: #ff6b5f;
  transform: rotate(90deg);
}

/* =========================================
   LIGHTBOX — PREVIOUS / NEXT
========================================= */

.lw-gallery-lightbox-prev,
.lw-gallery-lightbox-next {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 17px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.lw-gallery-lightbox-prev {
  left: 25px;
}

.lw-gallery-lightbox-next {
  right: 25px;
}

.lw-gallery-lightbox-prev:hover {
  background: #62c7b0;
  transform: translateY(-50%) translateX(-3px);
}

.lw-gallery-lightbox-next:hover {
  background: #62c7b0;
  transform: translateY(-50%) translateX(3px);
}

/* =========================================
   LIGHTBOX — COUNTER
========================================= */

.lw-gallery-lightbox-counter {
  position: absolute;

  left: 50%;
  bottom: -38px;

  transform: translateX(-50%);

  color: #ffffff;

  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;
}

/* =========================================
   GALLERY — MOBILE
========================================= */

@media (max-width: 768px) {
  .lw-gallery-more-wrap {
    margin-top: 32px;
  }

  .lw-gallery-more-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .lw-gallery-lightbox {
    padding: 18px;
  }

  .lw-gallery-lightbox-content {
    width: 100%;
    height: 78vh;
  }

  .lw-gallery-lightbox-close {
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    font-size: 17px;
  }

  .lw-gallery-lightbox-prev,
  .lw-gallery-lightbox-next {
    width: 42px;
    height: 42px;

    font-size: 14px;
  }

  .lw-gallery-lightbox-prev {
    left: 10px;
  }

  .lw-gallery-lightbox-next {
    right: 10px;
  }

  .lw-gallery-lightbox-counter {
    bottom: -32px;
  }
}

@media (max-width: 480px) {
  .lw-gallery-lightbox-prev,
  .lw-gallery-lightbox-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lw-gallery-lightbox-prev {
    left: 20px;
  }

  .lw-gallery-lightbox-next {
    right: 20px;
  }

  .lw-gallery-lightbox-prev:hover {
    transform: translateX(-3px);
  }

  .lw-gallery-lightbox-next:hover {
    transform: translateX(3px);
  }
}

/* =========================================================
   LITTLE WINGS ACADEMY
   GLOBAL LOGO-BASED BRAND THEME
   Purple • Pink • Mint • Soft Yellow
========================================================= */

:root {
  /* Brand Colors */
  --primary-pink: #d96b9d !important;
  --pink-soft: #f9e5ef !important;

  --primary-blue: #8b5bb7 !important;
  --sky-blue: #b58bd4 !important;
  --sky-soft: #f2eaf8 !important;

  --primary-yellow: #f4c95d !important;
  --yellow-soft: #fff5d9 !important;

  --primary-green: #75c9a5 !important;
  --green-soft: #e5f5ed !important;

  --primary-purple: #8b5bb7 !important;
  --purple-soft: #eee4f7 !important;

  --primary-orange: #f28b82 !important;

  /* Text */
  --text-main: #49365c !important;
  --text-muted: #817688 !important;

  /* Background */
  --bg-light: #fffaf5 !important;
  --white: #ffffff !important;
  --border-color: #eee4f0 !important;

  /* Brand Helpers */
  --lw-purple: #8b5bb7;
  --lw-purple-dark: #70459b;
  --lw-purple-light: #eee4f7;

  --lw-pink: #d96b9d;
  --lw-pink-dark: #c65388;
  --lw-pink-light: #f9e5ef;

  --lw-coral: #f28b82;
  --lw-coral-light: #fde9e6;

  --lw-mint: #75c9a5;
  --lw-mint-dark: #4eaa83;
  --lw-mint-light: #e5f5ed;

  --lw-yellow: #f4c95d;
  --lw-yellow-light: #fff5d9;

  --lw-cream: #fffaf5;
  --lw-heading: #49365c;
  --lw-body: #5f5367;
}

/* =========================================================
   GLOBAL
========================================================= */

body {
  background: var(--lw-cream) !important;
  color: var(--lw-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lw-heading) !important;
}

p {
  color: var(--lw-body);
}

a {
  color: inherit;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: rgba(255, 250, 245, 0.96) !important;
  border-bottom: 1px solid var(--lw-pink-light);
  box-shadow: 0 4px 20px rgba(112, 69, 155, 0.08) !important;
}

/* Logo title */

.brand-title {
  background: linear-gradient(90deg, #8b5bb7 0%, #d96b9d 100%) !important;

  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.brand-sub {
  color: #6f6178 !important;
}

.brand-tagline {
  color: var(--lw-pink) !important;
}

/* Desktop Navigation */

.nav-links a {
  color: #5b5064 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lw-purple) !important;
}

.nav-links a.active::after {
  background: linear-gradient(
    90deg,
    var(--lw-purple),
    var(--lw-pink)
  ) !important;
}

/* Enquire button */

.btn-pink {
  background: var(--lw-purple) !important;
  box-shadow: 0 8px 20px rgba(139, 91, 183, 0.25) !important;
}

.btn-pink:hover {
  background: var(--lw-purple-dark) !important;
}

/* =========================================================
   MOBILE HEADER / DRAWER
========================================================= */

.hamburger-btn {
  color: var(--lw-purple) !important;
}

.mobile-drawer {
  background: var(--lw-cream) !important;
}

.drawer-header {
  border-bottom-color: var(--lw-pink-light) !important;
}

.drawer-links a {
  color: #5b5064 !important;
}

.drawer-links a.active,
.drawer-links a:hover {
  background: var(--lw-pink-light) !important;
  color: var(--lw-purple) !important;
}

/* =========================================================
   GLOBAL BADGES
========================================================= */

.badge-pill {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
  border-color: var(--lw-pink) !important;
}

.badge-pill.blue {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple-dark) !important;
  border-color: #b58bd4 !important;
}

.badge-pill.yellow {
  background: var(--lw-yellow-light) !important;
  color: #9a7720 !important;
  border-color: var(--lw-yellow) !important;
}

.badge-pill.green {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
  border-color: var(--lw-mint) !important;
}

/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.btn-pink,
.lw-btn-primary,
.lw-trial-btn,
.lw-form-submit,
.lw-contact-submit,
.lw-admissions-primary-btn,
.lw-admission-form-submit {
  background: var(--lw-purple) !important;
  color: #ffffff !important;
}

.btn-pink:hover,
.lw-btn-primary:hover,
.lw-trial-btn:hover,
.lw-form-submit:hover,
.lw-contact-submit:hover,
.lw-admissions-primary-btn:hover,
.lw-admission-form-submit:hover {
  /* background: var(--lw-purple-dark) !important; */
}

.btn-blue,
.lw-btn-secondary {
  background: var(--lw-pink) !important;
  color: #ffffff !important;
}

.btn-blue:hover,
.lw-btn-secondary:hover {
  background: var(--lw-pink-dark) !important;
}

.btn-outline {
  border-color: var(--lw-purple) !important;
  color: var(--lw-purple) !important;
}

.btn-outline:hover {
  background: var(--lw-purple) !important;
  color: #ffffff !important;
}

.btn-whatsapp {
  background: #5bbd83 !important;
}

.btn-whatsapp:hover {
  background: #479e6b !important;
}

/* =========================================================
   HOME — HERO
========================================================= */

.lw-hero {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(217, 107, 157, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(117, 201, 165, 0.14),
      transparent 32%
    ),
    var(--lw-cream) !important;
}

.lw-hero-eyebrow,
.lw-hero-eyebrow span {
  color: var(--lw-pink) !important;
}

.lw-hero h1 {
  color: var(--lw-purple-dark) !important;
}

.lw-hero h1 span {
  color: var(--lw-pink) !important;
}

.lw-eyebrow-dot {
  background: var(--lw-mint) !important;
}

.lw-image-backdrop {
  background: var(--lw-mint) !important;
}

.lw-image-accent {
  background: var(--lw-pink) !important;
}

.lw-floating-card {
  border-color: var(--lw-pink-light) !important;
}

.lw-icon-mint {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-icon-coral {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-hero-mini-badge {
  background: var(--lw-purple) !important;
}

/* =========================================================
   HOME — PROGRAMS
========================================================= */

.lw-programs {
  background: #ffffff !important;
}

.lw-section-kicker {
  color: var(--lw-pink) !important;
}

.lw-programs-header h2 {
  color: var(--lw-purple-dark) !important;
}

.lw-programs-header h2 em {
  color: var(--lw-pink) !important;
}

/* Program cards */

.lw-program-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
  box-shadow: 0 15px 40px rgba(112, 69, 155, 0.09) !important;
}

/* Program top accents */

.lw-program-preschool::before {
  background: var(--lw-purple) !important;
}

.lw-program-daycare::before {
  background: var(--lw-mint) !important;
}

.lw-program-activity::before {
  background: var(--lw-pink) !important;
}

.lw-program-number {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple-dark) !important;
}

.lw-program-daycare .lw-program-number {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-program-activity .lw-program-number {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-price {
  color: var(--lw-purple) !important;
}

.lw-program-daycare .lw-price {
  color: var(--lw-mint-dark) !important;
}

.lw-program-activity .lw-price {
  color: var(--lw-pink-dark) !important;
}

.lw-age-badge {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple-dark) !important;
}

.lw-program-daycare .lw-age-badge {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-program-activity .lw-age-badge {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-check {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-program-preschool .lw-check {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple-dark) !important;
}

.lw-program-activity .lw-check {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-program-link {
  color: var(--lw-purple) !important;
}

.lw-program-link:hover {
  color: var(--lw-pink-dark) !important;
}

/* =========================================================
   HOME — FREE TRIAL
========================================================= */

.lw-trial {
  background: var(--lw-purple-light) !important;
}

.lw-trial-card {
  background: linear-gradient(
    135deg,
    #70459b 0%,
    #8b5bb7 55%,
    #a76cc2 100%
  ) !important;
}

.lw-trial-label {
  color: var(--lw-yellow) !important;
}

.lw-trial-content h2 {
  color: #ffffff !important;
}

.lw-trial-content h2 span {
  color: var(--lw-yellow) !important;
}

.lw-trial-point i,
.lw-trial-icon {
  color: var(--lw-mint) !important;
}

.lw-trial-btn {
  background: #ffffff !important;
  color: var(--lw-purple-dark) !important;
}

.lw-trial-btn:hover {
  background: var(--lw-pink-light) !important;
}

/* =========================================================
   HOME — TRUST / DIFFERENCE
========================================================= */

.lw-trust-section {
  background: var(--lw-cream) !important;
}

.lw-trust-header h2 {
  color: var(--lw-purple-dark) !important;
}

.lw-trust-header h2 em {
  color: var(--lw-pink) !important;
}

.lw-trust-feature,
.lw-trust-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-trust-feature-icon,
.lw-trust-card-icon {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

.lw-trust-card:hover .lw-trust-card-icon {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-trust-card-number {
  color: var(--lw-pink) !important;
}

.lw-trust-arrow {
  color: var(--lw-mint-dark) !important;
}

/* =========================================================
   HOME — CAMPUS
========================================================= */

.lw-campus {
  background: #ffffff !important;
}

.lw-campus-orb-one {
  background: rgba(217, 107, 157, 0.14) !important;
}

.lw-campus-orb-two {
  background: rgba(117, 201, 165, 0.14) !important;
}

.lw-campus-image-frame {
  box-shadow: 0 22px 50px rgba(112, 69, 155, 0.12) !important;
}

.lw-campus-image-frame::before {
  background: rgba(217, 107, 157, 0.14) !important;
}

.lw-campus-image-frame::after {
  background: rgba(117, 201, 165, 0.16) !important;
}

.lw-campus-location {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-campus-location-icon {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-campus-image-label {
  background: rgba(255, 250, 245, 0.96) !important;
  color: var(--lw-purple-dark) !important;
}

.lw-campus-content h2 {
  color: var(--lw-purple-dark) !important;
}

.lw-campus-content h2 em {
  color: var(--lw-pink) !important;
}

.lw-campus-highlight-icon {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-campus-cta {
  background: var(--lw-purple) !important;
}

.lw-campus-cta:hover {
  background: var(--lw-purple-dark) !important;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.lw-about-hero {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(217, 107, 157, 0.11),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-about-hero h1,
.lw-about-philosophy h2,
.lw-about-features-header h2 {
  color: var(--lw-purple-dark) !important;
}

.lw-about-hero h1 span,
.lw-about-philosophy h2 span,
.lw-about-features-header h2 span {
  color: var(--lw-pink) !important;
}

.lw-about-feature-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-about-feature-icon {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

/* =========================================================
   PRESCHOOL
========================================================= */

.lw-preschool-hero {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(117, 201, 165, 0.16),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-preschool-eyebrow {
  color: var(--lw-pink) !important;
}

.lw-preschool-hero h1,
.lw-preschool-details h2 {
  color: var(--lw-purple-dark) !important;
}

.lw-preschool-hero h1 span {
  color: var(--lw-pink) !important;
}

.lw-preschool-image-badge {
  background: var(--lw-mint) !important;
  color: #ffffff !important;
}

.lw-preschool-feature {
  border-color: var(--lw-pink-light) !important;
}

.lw-preschool-feature-icon {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

.lw-preschool-enquire,
.lw-preschool-whatsapp {
  background: var(--lw-pink) !important;
  color: #ffffff !important;
}

.lw-preschool-fee-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-preschool-fee-card .lw-price {
  color: var(--lw-purple) !important;
}

/* =========================================================
   DAYCARE
========================================================= */

.lw-daycare-hero {
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(117, 201, 165, 0.15),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-daycare-eyebrow {
  color: var(--lw-mint-dark) !important;
}

.lw-daycare-hero h1,
.lw-daycare-care h2 {
  color: var(--lw-purple-dark) !important;
}

.lw-daycare-hero h1 span {
  color: var(--lw-mint-dark) !important;
}

.lw-daycare-price-pill {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-daycare-image-badge {
  background: var(--lw-mint) !important;
}

.lw-daycare-care-item {
  border-color: var(--lw-pink-light) !important;
}

.lw-daycare-care-icon {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-daycare-plan-card {
  background: #ffffff !important;
  border-color: var(--lw-mint-light) !important;
}

.lw-daycare-plan-price {
  color: var(--lw-mint-dark) !important;
}

.lw-daycare-plan-btn {
  background: var(--lw-mint-dark) !important;
  color: #ffffff !important;
}

/* =========================================================
   ACTIVITY CLUB
========================================================= */

.lw-activity-hero {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(217, 107, 157, 0.12),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-activity-eyebrow {
  color: var(--lw-pink) !important;
}

.lw-activity-hero h1 {
  color: var(--lw-purple-dark) !important;
}

.lw-activity-word-explore {
  color: var(--lw-purple) !important;
}

.lw-activity-word-create {
  color: var(--lw-pink) !important;
}

.lw-activity-word-shine {
  color: var(--lw-mint-dark) !important;
}

.lw-activity-main-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-activity-icon-card {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

.lw-activity-item {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-activity-item-icon {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-activity-pricing {
  background: var(--lw-cream) !important;
}

.lw-activity-price-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-activity-price-card .lw-price {
  color: var(--lw-purple) !important;
}

/* =========================================================
   GALLERY
========================================================= */

.lw-gallery-hero {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(217, 107, 157, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(117, 201, 165, 0.12),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-gallery-eyebrow {
  color: var(--lw-pink) !important;
}

.lw-gallery-hero h1 {
  color: var(--lw-purple-dark) !important;
}

.lw-gallery-hero h1 span {
  color: var(--lw-pink) !important;
}

.lw-gallery-filter-wrap {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-gallery-filter {
  color: #685c70 !important;
}

.lw-gallery-filter.active {
  background: var(--lw-purple) !important;
  color: #ffffff !important;
}

.lw-gallery-filter:hover {
  color: var(--lw-purple) !important;
}

.lw-gallery-item {
  border-color: var(--lw-pink-light) !important;
  box-shadow: 0 14px 35px rgba(112, 69, 155, 0.1) !important;
}

.lw-gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(73, 54, 92, 0.88),
    rgba(73, 54, 92, 0.05)
  ) !important;
}

.lw-gallery-overlay span {
  color: var(--lw-yellow) !important;
}

.lw-gallery-view {
  background: var(--lw-pink) !important;
  color: #ffffff !important;
}

/* =========================================================
   ADMISSIONS
========================================================= */

.lw-admissions-hero {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(217, 107, 157, 0.12),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-admissions-eyebrow {
  color: var(--lw-pink) !important;
}

.lw-admissions-hero h1 {
  color: var(--lw-purple-dark) !important;
}

.lw-admissions-hero h1 span {
  color: var(--lw-pink) !important;
}

.lw-admission-process {
  background: #ffffff !important;
}

.lw-admission-step {
  border-color: var(--lw-pink-light) !important;
  background: #ffffff !important;
}

.lw-admission-step-number {
  /* background: var(--lw-purple-light) !important; */
  color: var(--lw-purple-dark) !important;
}

.lw-admission-step-icon {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-admission-assistance {
  background: var(--lw-mint-light) !important;
  border-color: var(--lw-mint) !important;
}

.lw-assistance-icon {
  background: var(--lw-mint) !important;
  color: #ffffff !important;
}

.lw-assistance-btn {
  background: var(--lw-mint-dark) !important;
  color: #ffffff !important;
}

.lw-admission-form-section {
  background: var(--lw-cream) !important;
}

.lw-admission-form-wrap {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-form-side {
  background: linear-gradient(
    145deg,
    var(--lw-purple-dark),
    var(--lw-purple)
  ) !important;
}

.lw-form-side-badge {
  background: rgba(255, 255, 255, 0.14) !important;
}

.lw-input-wrap:focus-within,
.lw-textarea-wrap:focus-within {
  border-color: var(--lw-purple) !important;
  box-shadow: 0 0 0 3px var(--lw-purple-light) !important;
}

/* =========================================================
   CONTACT
========================================================= */

.lw-contact-hero {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(217, 107, 157, 0.12),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-contact-eyebrow {
  color: var(--lw-pink) !important;
}

.lw-contact-hero h1 {
  color: var(--lw-purple-dark) !important;
}

.lw-contact-hero h1 span {
  color: var(--lw-pink) !important;
}

.lw-contact-primary-btn {
  background: var(--lw-purple) !important;
}

.lw-contact-primary-btn:hover {
  background: var(--lw-purple-dark) !important;
}

.lw-contact-secondary-btn {
  border-color: var(--lw-pink) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-contact-info-card,
.lw-contact-form-card,
.lw-contact-map-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
}

.lw-contact-info-icon {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

.lw-contact-icon-location {
  background: var(--lw-pink-light) !important;
  color: var(--lw-pink-dark) !important;
}

.lw-contact-icon-phone {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

.lw-contact-icon-email {
  background: var(--lw-yellow-light) !important;
  color: #a17a18 !important;
}

.lw-contact-form-icon,
.lw-contact-map-icon {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

.lw-contact-input-wrap:focus-within,
.lw-contact-textarea-wrap:focus-within {
  border-color: var(--lw-purple) !important;
  box-shadow: 0 0 0 3px var(--lw-purple-light) !important;
}

/* =========================================================
   VIDEO SECTION
========================================================= */

.lw-video-section {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(217, 107, 157, 0.1),
      transparent 30%
    ),
    var(--lw-cream) !important;
}

.lw-video-card {
  background: #ffffff !important;
  border-color: var(--lw-pink-light) !important;
  box-shadow: 0 16px 40px rgba(112, 69, 155, 0.1) !important;
}

.lw-video-card:hover {
  box-shadow: 0 22px 50px rgba(112, 69, 155, 0.15) !important;
}

.lw-video-icon {
  background: var(--lw-purple-light) !important;
  color: var(--lw-purple) !important;
}

.lw-video-card:hover .lw-video-icon {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

/* =========================================================
   VIEW MORE GALLERY BUTTON
========================================================= */

.lw-gallery-more-btn {
  background: var(--lw-purple) !important;
  box-shadow: 0 12px 28px rgba(139, 91, 183, 0.2) !important;
}

.lw-gallery-more-btn:hover {
  background: var(--lw-pink) !important;
}

/* =========================================================
   FOOTER
========================================================= */

.lw-footer {
  background: linear-gradient(
    145deg,
    #49365c 0%,
    #70459b 55%,
    #8b5bb7 100%
  ) !important;
}

.lw-footer-glow-one {
  background: rgba(217, 107, 157, 0.18) !important;
}

.lw-footer-glow-two {
  background: rgba(117, 201, 165, 0.15) !important;
}

.lw-footer-brand-title {
  color: #ffffff !important;
}

.lw-footer-brand-sub {
  color: var(--lw-yellow) !important;
}

.lw-footer-heading {
  color: #ffffff !important;
}

.lw-footer-heading::after {
  background: var(--lw-pink) !important;
}

.lw-footer-column li a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.lw-footer-column li a:hover {
  color: var(--lw-yellow) !important;
}

.lw-footer-column li a span {
  color: var(--lw-mint) !important;
}

.lw-footer-contact-icon {
  background: rgba(255, 255, 255, 0.12) !important;
  color: var(--lw-pink) !important;
}

.lw-footer-contact-item:hover .lw-footer-contact-icon {
  background: var(--lw-pink) !important;
  color: #ffffff !important;
}

.lw-footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.16) !important;
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  background: #5bbd83 !important;
  box-shadow: 0 10px 28px rgba(91, 189, 131, 0.38) !important;
}

.floating-whatsapp:hover {
  background: #479e6b !important;
}

/* =========================================================
   MOBILE BOTTOM BAR
========================================================= */

.mobile-bottom-bar {
  background: rgba(255, 250, 245, 0.98) !important;
  border-top-color: var(--lw-pink-light) !important;
  box-shadow: 0 -4px 18px rgba(112, 69, 155, 0.1) !important;
}

.bottom-action-btn {
  color: #6c6072 !important;
}

.bottom-action-btn.active {
  color: var(--lw-pink) !important;
}

.bottom-action-btn:nth-child(1) i {
  color: var(--lw-purple) !important;
}

.bottom-action-btn:nth-child(2) i {
  color: var(--lw-mint-dark) !important;
}

.bottom-action-btn:nth-child(3) i {
  color: var(--lw-pink) !important;
}

.bottom-action-btn:nth-child(4) i {
  color: var(--lw-yellow) !important;
}

/* =========================================================
   TOAST
========================================================= */

.notification-toast {
  background: var(--lw-mint-dark) !important;
}

/* =========================================================
   OLD CAMPUS SECTION
   Kept for compatibility with any existing elements
========================================================= */

.campus-section {
  background: var(--lw-cream) !important;
}

.campus-badge {
  border-color: var(--lw-pink) !important;
  color: var(--lw-pink-dark) !important;
}

.campus-content h2 {
  color: var(--lw-purple-dark) !important;
}

.campus-content h2 span {
  color: var(--lw-pink) !important;
}

.campus-content p {
  color: var(--lw-body) !important;
}

.campus-btn {
  background: var(--lw-purple) !important;
  box-shadow: 0 10px 25px rgba(139, 91, 183, 0.18) !important;
}

.campus-btn:hover {
  background: var(--lw-purple-dark) !important;
}

.campus-image-frame {
  background: #ffffff !important;
}

.campus-image-frame::before {
  background: rgba(217, 107, 157, 0.13) !important;
}

.campus-image-frame::after {
  background: rgba(117, 201, 165, 0.14) !important;
}

.campus-image-tag {
  color: var(--lw-purple-dark) !important;
}

.campus-image-tag span {
  background: var(--lw-mint-light) !important;
  color: var(--lw-mint-dark) !important;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.lw-gallery-lightbox {
  background: rgba(73, 54, 92, 0.94) !important;
}

.lw-gallery-lightbox-close:hover {
  background: var(--lw-pink) !important;
}

.lw-gallery-lightbox-prev:hover,
.lw-gallery-lightbox-next:hover {
  background: var(--lw-mint-dark) !important;
}

/* =========================================================
   RESPONSIVE — KEEP BACKGROUND CONSISTENT
========================================================= */

@media (max-width: 768px) {
  body {
    background: var(--lw-cream) !important;
  }

  .lw-hero,
  .lw-about-hero,
  .lw-preschool-hero,
  .lw-daycare-hero,
  .lw-activity-hero,
  .lw-gallery-hero,
  .lw-admissions-hero,
  .lw-contact-hero {
    background-color: var(--lw-cream) !important;
  }
}


/* =========================================================
   LITTLE WINGS — THEME BUG FIXES
   Add this AFTER the global logo theme CSS
========================================================= */


/* =========================================================
   1. HEADER — REMOVE BLUE FOCUS OUTLINE
========================================================= */

.nav-links a,
.nav-links a:focus,
.nav-links a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.nav-links a.active {
  color: var(--lw-purple) !important;
}

.nav-links a.active::after {
  background: var(--lw-purple) !important;
}


/* =========================================================
   2. ADMISSIONS — FORM SUBMIT WRAPPER
   Background should NOT appear behind the button
========================================================= */

.lw-form-submit {
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border: 0 !important;
}


/* Actual admission submit button */

.lw-form-submit button {
  width: 100% !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  min-height: 54px !important;

  background: var(--lw-coral) !important;
  color: #ffffff !important;

  border: 0 !important;
  border-radius: 15px !important;

  font-family: "Nunito", sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;

  cursor: pointer !important;

  box-shadow: none !important;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease !important;
}

.lw-form-submit button:hover {
  background: #e87971 !important;
  transform: translateY(-3px) !important;

  box-shadow:
    0 14px 30px rgba(242, 139, 130, 0.25) !important;
}

.lw-form-submit button:focus,
.lw-form-submit button:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 4px rgba(242, 139, 130, 0.18) !important;
}


/* Admission WhatsApp information text */

.lw-form-submit small {
  display: block !important;

  margin-top: 10px !important;

  background: transparent !important;

  color: #817688 !important;

  text-align: center !important;

  font-size: 11px !important;
  line-height: 1.5 !important;
}


/* =========================================================
   3. ADMISSIONS — IMMEDIATE ASSISTANCE
========================================================= */

.lw-admission-assistance {
  background: var(--lw-mint-light) !important;
  margin-top: 20px !important;

  border: 1px solid rgba(117, 201, 165, 0.22) !important;

  box-shadow:
    0 20px 50px rgba(78, 170, 131, 0.10) !important;
}

.lw-assistance-icon {
  background: var(--lw-mint) !important;
  color: #ffffff !important;
}

.lw-assistance-content span {
  color: var(--lw-mint-dark) !important;
}

.lw-assistance-content h3 {
  color: var(--lw-heading) !important;
}

.lw-assistance-content p {
  color: #6f6376 !important;
}

.lw-assistance-btn {
  background: var(--lw-mint-dark) !important;
  color: #ffffff !important;
}

.lw-assistance-btn:hover {
  background: #438f6e !important;
  color: #ffffff !important;
}


/* =========================================================
   4. CONTACT — FORM SUBMIT WRAPPER
========================================================= */

.lw-contact-submit {
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border: 0 !important;
}


/* Actual Contact submit button */

.lw-contact-submit button {
  width: 100% !important;

  min-height: 53px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  background: var(--lw-coral) !important;
  color: #ffffff !important;

  border: 0 !important;
  border-radius: 15px !important;

  font-family: "Nunito", sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;

  cursor: pointer !important;

  box-shadow: none !important;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease !important;
}

.lw-contact-submit button:hover {
  /* background: #e87971 !important;
   */

  transform: translateY(-3px) !important;

  box-shadow:
    0 14px 30px rgba(242, 139, 130, 0.25) !important;
}

.lw-contact-submit button:focus,
.lw-contact-submit button:focus-visible {
  outline: none !important;

  box-shadow:
    0 0 0 4px rgba(242, 139, 130, 0.18) !important;
}

.lw-contact-submit small {
  display: block !important;

  margin-top: 9px !important;

  background: transparent !important;

  color: #817688 !important;

  text-align: center !important;

  font-size: 11px !important;
  line-height: 1.5 !important;
}


/* =========================================================
   5. PRESCHOOL — WHATSAPP BUTTON
   Only the link should look like a button
========================================================= */

.lw-preschool-enquire {
  display: block !important;

  width: auto !important;

  margin-top: 28px !important;

  background: transparent !important;

  padding: 0 !important;

  border: 0 !important;
}

.lw-preschool-whatsapp {
  display: inline-flex !important;

  width: auto !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 10px !important;

  padding: 13px 18px !important;

  border-radius: 14px !important;

  background: var(--lw-purple) !important;

  color: #ffffff !important;

  box-shadow:
    0 12px 28px rgba(139, 91, 183, 0.18) !important;
}

.lw-preschool-whatsapp i {
  color: #ffffff !important;
}

.lw-preschool-whatsapp:hover {
  background: var(--lw-purple-dark) !important;

  color: #ffffff !important;

  transform: translateY(-3px) !important;
}


/* =========================================================
   6. FORM INPUTS — LOGO THEME
========================================================= */

.lw-input-wrap input,
.lw-input-wrap select,
.lw-input-wrap textarea,
.lw-contact-input-wrap input,
.lw-contact-input-wrap textarea {
  color: var(--lw-heading) !important;

  background: #fffdfb !important;

  border-color: #e7ddea !important;
}

.lw-input-wrap input::placeholder,
.lw-input-wrap textarea::placeholder,
.lw-contact-input-wrap input::placeholder,
.lw-contact-input-wrap textarea::placeholder {
  color: #9a909f !important;
}

.lw-input-wrap > i,
.lw-contact-input-wrap > i {
  color: var(--lw-purple) !important;
}

.lw-input-wrap input:focus,
.lw-input-wrap select:focus,
.lw-input-wrap textarea:focus,
.lw-contact-input-wrap input:focus,
.lw-contact-input-wrap textarea:focus {
  border-color: var(--lw-purple) !important;

  background: #ffffff !important;

  box-shadow:
    0 0 0 4px rgba(139, 91, 183, 0.10) !important;
}


/* =========================================================
   7. FORM LABELS
========================================================= */

.lw-form-field label,
.lw-contact-field label {
  color: var(--lw-heading) !important;
}


/* =========================================================
   8. ADMISSION FORM — LEFT PANEL
========================================================= */

.lw-form-side {
  background:
    linear-gradient(
      145deg,
      #70459b 0%,
      #8b5bb7 100%
    ) !important;
}

.lw-form-side-badge {
  background: rgba(217, 107, 157, 0.18) !important;
  color: #ffffff !important;
}

.lw-form-side-points i {
  color: var(--lw-mint) !important;
}


/* =========================================================
   9. CONTACT INFO CARDS
========================================================= */

.lw-contact-info-card:hover {
  border-color:
    rgba(139, 91, 183, 0.22) !important;
}

.lw-contact-info-content h3 {
  color: var(--lw-heading) !important;
}

.lw-contact-number-row a,
.lw-contact-email a {
  color: var(--lw-purple-dark) !important;
}

.lw-contact-number-row a:hover,
.lw-contact-email a:hover {
  color: var(--lw-pink-dark) !important;
}


/* =========================================================
   10. PREVENT RANDOM PURPLE BACKGROUNDS ON FORM WRAPPERS
========================================================= */

.lw-form-submit,
.lw-contact-submit,
.lw-preschool-enquire {
  background-color: transparent !important;
}


/* =========================================================
   11. ACCESSIBILITY — FOCUS WITHOUT BLUE BROWSER RING
========================================================= */

button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(139, 91, 183, 0.45) !important;
  outline-offset: 3px !important;
}

.nav-links a:focus-visible {
  outline: none !important;
}
