/* ============================================
   LITTLE STARS NURSERY — GLOBAL STYLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  --primary: #A7D8F5;
  --secondary: #FFD6A5;
  --accent: #B8E0D2;
  --coral: #FF8C6B;
  --coral-dark: #e67557;
  --text: #333333;
  --light: #666666;
  --bg: #F9FAFB;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-h: 0 8px 30px rgba(0,0,0,0.15);
  --r: 14px;
  --r-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden;}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.3; }
h1 { font-size: 42px; font-weight: 800; }
h2 { font-size: 32px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }
p  { color: var(--light); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }

.section-title    { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--light); max-width: 620px;
                    margin: 0 auto 48px; font-size: 17px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; border: none; transition: all .3s ease; text-align: center;
}
.btn-coral   { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); transform: scale(1.05);
                   box-shadow: 0 6px 20px rgba(255,140,107,.4); }

.btn-outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral); color: #fff; transform: scale(1.05); }

.btn-white   { background: #fff; color: var(--coral); }
.btn-white:hover { background: var(--secondary); transform: scale(1.05); }

/* ---------- BADGE ---------- */
.badge {
  display: inline-block; background: var(--secondary); color: #c05e2e;
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700;
  font-family: 'Poppins', sans-serif; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .5px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.07); padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: relative;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--text);
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  padding: 8px 13px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text); transition: all .2s;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--primary); }
.nav-cta { margin-left: 8px; padding: 10px 18px !important;
           background: var(--coral) !important; color: #fff !important; border-radius: 10px !important; }
.nav-cta:hover { background: var(--coral-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.5);
}
.hero-content {
  position: relative; z-index: 2; max-width: 640px;
  padding: 60px 0; margin-left: 80px;
}
.hero-content h1 { color: #fff; margin-bottom: 18px; }
.hero-content > p  { color: rgba(255,255,255,.9); font-size: 18px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-inner        { min-height: 380px; }
.hero-inner .hero-content { max-width: 580px; }
.hero-inner h1     { font-size: 38px; }

/* ============================================
   GRIDS
   ============================================ */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-6  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-5c { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #fff; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); transition: all .3s;
}
.card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.card-img   { width: 100%; height: 210px; object-fit: cover; }
.card-body  { padding: 24px; }
.card-body h3 { margin-bottom: 10px; font-size: 20px; }
.card-body p  { font-size: 15px; margin-bottom: 18px; }

/* ============================================
   ICON BOXES
   ============================================ */
.icon-box {
  text-align: center; padding: 36px 24px; background: #fff;
  border-radius: var(--r); box-shadow: var(--shadow); transition: all .3s;
}
.icon-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.icon-circle {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 18px;
}
.icon-box h3 { font-size: 18px; margin-bottom: 10px; }
.icon-box p  { font-size: 15px; }

/* ============================================
   LEARNING AREA CARDS
   ============================================ */
.la-card {
  background: #fff; border-radius: var(--r); padding: 28px 22px;
  box-shadow: var(--shadow); text-align: center; transition: all .3s;
}
.la-card:hover { background: linear-gradient(135deg,#fff8f3,#fff);
                 transform: translateY(-4px); box-shadow: var(--shadow-h); }
.la-icon { font-size: 42px; margin-bottom: 14px; }
.la-card h3 { font-size: 18px; margin-bottom: 8px; }
.la-card p  { font-size: 14px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.t-section { background: linear-gradient(135deg,#f0f9ff,#fff8f3); }
.t-slider  { position: relative; overflow: hidden; }
.t-track   { display: flex; transition: transform .5s ease; }
.t-item    { min-width: 100%; padding: 0 16px; }
.t-card    {
  background: #fff; border-radius: var(--r); padding: 44px; max-width: 720px;
  margin: 0 auto; box-shadow: var(--shadow); text-align: center;
}
.t-avatar  {
  width: 76px; height: 76px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; border: 4px solid var(--primary);
}
.t-stars  { color: #FFB800; font-size: 21px; margin-bottom: 14px; }
.t-text   { font-style: italic; color: var(--light); margin-bottom: 16px; font-size: 17px; }
.t-name   { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 16px; }
.t-role   { font-size: 14px; color: var(--coral); }

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot  {
  width: 10px; height: 10px; border-radius: 50%; background: var(--primary);
  opacity: .4; cursor: pointer; border: none; transition: all .3s;
}
.dot.active { opacity: 1; background: var(--coral); transform: scale(1.3); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg,var(--coral),#ff6b4a);
  padding: 80px 24px; text-align: center; color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 38px; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.9); margin-bottom: 32px; font-size: 18px; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip { background: linear-gradient(135deg,var(--coral),#ff6b4a); padding: 52px 0; }
.stat-num { font-family: 'Poppins',sans-serif; font-size: 44px; font-weight: 800; color: #fff; }
.stat-lbl { color: rgba(255,255,255,.85); font-size: 15px; }

/* ============================================
   ACCORDION
   ============================================ */
.accordion { max-width: 760px; margin: 0 auto; }
.acc-item  {
  background: #fff; border-radius: var(--r-sm);
  margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden;
}
.acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; user-select: none;
  font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 16px; transition: background .2s;
}
.acc-header:hover { background: var(--bg); }
.acc-icon  { font-size: 22px; transition: transform .3s; color: var(--coral); }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body  { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-body-inner { padding: 0 24px 20px; color: var(--light); font-size: 15px; }

/* ============================================
   PRICING TABLE
   ============================================ */
.ptable    { width: 100%; border-collapse: collapse; border-radius: var(--r);
             overflow: hidden; box-shadow: var(--shadow); }
.ptable th { background: var(--primary); padding: 16px 24px;
             font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 700; text-align: left; }
.ptable td { padding: 16px 24px; font-size: 15px; border-bottom: 1px solid #f0f0f0; background: #fff; }
.ptable tr:hover td { background: #fff8f3; }

/* ============================================
   STEPS
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step  {
  background: #fff; border-radius: var(--r); padding: 32px 22px;
  text-align: center; box-shadow: var(--shadow); transition: all .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg,var(--coral),#ff6b4a); color: #fff;
  font-family: 'Poppins',sans-serif; font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.step h3 { font-size: 17px; margin-bottom: 10px; }

/* ============================================
   TIMELINE
   ============================================ */
.timeline   { max-width: 700px; margin: 0 auto; }
.tl-item    { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.tl-time    {
  min-width: 110px; font-family: 'Poppins',sans-serif; font-weight: 700;
  font-size: 14px; color: var(--coral); padding-top: 14px; text-align: right;
}
.tl-dot-col { display: flex; flex-direction: column; align-items: center; }
.tl-dot     {
  width: 16px; height: 16px; border-radius: 50%; background: var(--coral);
  flex-shrink: 0; margin-top: 18px;
}
.tl-line    { width: 2px; flex: 1; background: var(--primary); min-height: 40px; }
.tl-card    { background: #fff; border-radius: var(--r-sm); padding: 16px 22px;
              box-shadow: var(--shadow); flex: 1; }
.tl-card h4 { font-family: 'Poppins',sans-serif; font-size: 16px; margin-bottom: 4px; }
.tl-card p  { font-size: 14px; }

/* ============================================
   IMAGE GRID / LIGHTBOX
   ============================================ */
.img-grid      { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.img-grid-item { border-radius: var(--r-sm); overflow: hidden; position: relative; cursor: pointer; }
.img-grid-item img { width: 100%; height: 210px; object-fit: cover; transition: transform .4s; }
.img-grid-item:hover img { transform: scale(1.06); }
.img-over {
  position: absolute; inset: 0;
  background: rgba(255,140,107,.3); display: flex; align-items: center;
  justify-content: center; font-size: 30px; color: #fff;
  opacity: 0; transition: opacity .3s;
}
.img-grid-item:hover .img-over { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 85vh; border-radius: var(--r); box-shadow: 0 0 60px rgba(0,0,0,.5); }
.lb-close {
  position: absolute; top: 20px; right: 24px; font-size: 36px; color: #fff;
  cursor: pointer; line-height: 1; transition: opacity .2s;
}
.lb-close:hover { opacity: .7; }

/* ============================================
   CLASS CARDS
   ============================================ */
.class-card { background: #fff; border-radius: var(--r); overflow: hidden;
              box-shadow: var(--shadow); transition: all .3s; }
.class-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.class-card img { width: 100%; height: 230px; object-fit: cover; }
.class-card-body { padding: 28px; }
.class-badge { display: inline-block; background: var(--secondary); color: #c05e2e;
               padding: 4px 14px; border-radius: 50px; font-size: 12px;
               font-weight: 700; font-family: 'Poppins',sans-serif; margin-bottom: 12px; }
.class-tag { display: inline-block; background: var(--accent); color: #2d6b5a;
             padding: 3px 12px; border-radius: 50px; font-size: 12px;
             font-weight: 700; font-family: 'Poppins',sans-serif; margin: 2px; }
.class-meta { display: flex; gap: 16px; margin: 10px 0 14px; flex-wrap: wrap; }
.class-meta span { font-size: 14px; color: var(--light); }

/* ============================================
   CAMP CARDS
   ============================================ */
.camp-card { background: #fff; border-radius: var(--r); overflow: hidden;
             box-shadow: var(--shadow); transition: all .3s; }
.camp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.camp-card img { width: 100%; height: 220px; object-fit: cover; }
.camp-card-body { padding: 28px; }
.camp-tag { display: inline-block; background: var(--accent); color: #2d6b5a;
            padding: 4px 14px; border-radius: 50px; font-size: 12px;
            font-weight: 700; font-family: 'Poppins',sans-serif; margin-bottom: 10px; }

/* ============================================
   CONTACT
   ============================================ */
.ci-box { background: #fff; border-radius: var(--r); padding: 36px; box-shadow: var(--shadow); }
.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid #f0f0f0;
}
.ci-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon {
  width: 50px; height: 50px; border-radius: 12px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ci-text h4 { font-family: 'Poppins',sans-serif; font-weight: 700; margin-bottom: 4px; }
.ci-text p  { font-size: 15px; }

.map-box {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  height: 350px; background: #e8f4fc;
  display: flex; align-items: center; justify-content: center; text-align: center;
}

/* ============================================
   FORM
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Poppins',sans-serif;
  font-weight: 600; font-size: 14px; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 2px solid #e8ecef; border-radius: 10px;
  font-family: 'Nunito',sans-serif; font-size: 16px;
  color: var(--text); background: #fff; outline: none; transition: border .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   FEATURE LIST
   ============================================ */
.feat-list { list-style: none; margin: 18px 0 28px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 16px;
}
.feat-list li::before {
  content: "✓"; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #2d6b5a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ============================================
   BG HELPERS
   ============================================ */
.bg-light-blue { background: #f0f8ff; }
.bg-peach      { background: #fff9f5; }
.bg-mint       { background: #f0faf6; }
.bg-white      { background: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: linear-gradient(135deg,#d6f0e8,#c5e8f7); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 44px;
}
.footer-brand p { color: var(--light); margin: 14px 0 20px; font-size: 15px; max-width: 280px; }
.fsocial { display: flex; gap: 10px; }
.fsocial a {
  width: 38px; height: 38px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; transition: all .3s; box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.fsocial a:hover { background: var(--coral); transform: translateY(-2px); }
.footer h4 { font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--light); font-size: 15px; transition: color .2s; }
.footer ul li a:hover { color: var(--coral); }
.fcontact p { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.08); padding: 20px 0;
  text-align: center; color: var(--light); font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps       { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 992px) {
  h1 { font-size: 34px; }  h2 { font-size: 27px; }
  .grid-3, .grid-6 { grid-template-columns: repeat(2,1fr); }
  .grid-4          { grid-template-columns: repeat(2,1fr); }
  .grid-5c         { grid-template-columns: repeat(3,1fr); }
  .hero-content    { margin-left: 40px; }
}
@media (max-width: 768px) {
  h1 { font-size: 28px; }  h2 { font-size: 22px; }  h3 { font-size: 18px; }
  .section { padding: 56px 0; }

  /* Mobile nav */
  .nav-menu {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: -24px; right: -24px;
    background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.1); padding: 12px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a    { padding: 12px 16px; border-radius: 6px; }
  .hamburger     { display: flex; }

  .hero          { min-height: 440px; }
  .hero-content  { margin-left: 20px; margin-right: 20px; padding: 40px 0; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .grid-2, .grid-3, .grid-6 { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: repeat(2,1fr); }
  .grid-5c { grid-template-columns: repeat(2,1fr); }
  .img-grid { grid-template-columns: repeat(2,1fr); }
  .steps   { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner h2 { font-size: 28px; }
  .tl-time { min-width: 80px; font-size: 12px; }
}
@media (max-width: 576px) {
  .grid-4, .grid-5c { grid-template-columns: 1fr; }
  .img-grid  { grid-template-columns: 1fr; }
  .steps     { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: 300px; }
  .hero-inner h1 { font-size: 26px; }
}