/* ----------------------------------------------------------------
	Canvas: Kindergarten 2
-----------------------------------------------------------------*/

    :root { --cnvs-themecolor: #f59e0b; --cnvs-themecolor-rgb: 245, 158, 11; }
  

  #header {
    --cnvs-header-bg: #fff;
    --cnvs-header-sticky-bg: #fff;
    --cnvs-header-height: 90px;
    --cnvs-header-height-shrink: 64px;
    --cnvs-primary-menu-font-weight: 700;
    --cnvs-primary-menu-font-size: 0.875rem;
    --cnvs-primary-menu-tt: none;
    --cnvs-primary-menu-ls: 0.01em;
    --cnvs-primary-menu-color: #3d2c8d;
    --cnvs-primary-menu-hover-color: #f59e0b;
    border-bottom: 3px solid #fef3c7;
  }

  #header #logo a span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    font-weight: 800;
    color: #3d2c8d;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
  }

  #header #logo a span em {
    font-style: normal;
    color: #f59e0b;
  }

  #header #logo .logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    flex-shrink: 0;
  }

  #header .header-misc .btn-enroll {
    background: linear-gradient(135deg, #f59e0b 0%, #ef8c00 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  #header .header-misc .btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    color: #fff !important;
  }

  #header .header-misc .btn-enroll svg {
    flex-shrink: 0;
  }

  #header .header-misc .header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
  }

  #header .header-misc .header-phone:hover {
    color: #3d2c8d;
  }

  #header .header-misc .header-phone .phone-icon {
    width: 30px;
    height: 30px;
    background: #ede9fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d2c8d;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  #header .primary-menu > ul > li > a > div::before {
    content: '';
    display: block;
    height: 3px;
    border-radius: 2px;
    background: #f59e0b;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
  }

  #header .primary-menu > ul > li > a:hover > div::before,
  #header .primary-menu > ul > li.current > a > div::before {
    transform: scaleX(1);
  }

  #header .primary-menu > ul > li > a > div {
    position: relative;
  }

  @media (max-width: 991.98px) {
    #header .header-misc .header-phone {
      display: none;
    }
  }


    .facility-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }
    .facility-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .facility-card:hover img {
      transform: scale(1.06);
    }
    .facility-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 14px 20px;
      background: rgba(255, 255, 255, 0.96);
      border-top: 3px solid var(--cnvs-themecolor);
    }
    .facility-label h6 {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--cnvs-contrast-900);
      letter-spacing: 0.01em;
    }
    .facility-label span {
      font-size: 0.8125rem;
      color: var(--cnvs-contrast-500);
    }
  

    #footer { background-color: #1a2c3d; }
    #footer .widget h4 { color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 0.625rem; border-bottom: 2px solid var(--cnvs-themecolor); display: inline-block; }
    #footer .footer-brand-name { font-size: 1.375rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.2; }
    #footer .footer-brand-name span { color: var(--cnvs-themecolor); }
    #footer .footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.55); font-style: italic; margin-top: 0.25rem; margin-bottom: 1.25rem; }
    #footer address { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.9; font-style: normal; }
    #footer address i { color: var(--cnvs-themecolor); margin-right: 0.5rem; width: 14px; text-align: center; }
    #footer .widget_links ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s, padding-left 0.2s; display: inline-flex; align-items: center; gap: 0.4rem; }
    #footer .widget_links ul li a::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--cnvs-themecolor); opacity: 0; transition: opacity 0.2s; flex-shrink: 0; }
    #footer .widget_links ul li a:hover { color: var(--cnvs-themecolor); padding-left: 4px; }
    #footer .widget_links ul li a:hover::before { opacity: 1; }
    #footer .widget_links ul li { padding: 0.3rem 0; border: none; }
    #footer .hours-table td { font-size: 0.8125rem; color: rgba(255,255,255,0.6); padding: 0.2rem 0; vertical-align: top; }
    #footer .hours-table td:first-child { color: rgba(255,255,255,0.85); font-weight: 600; padding-right: 1rem; white-space: nowrap; }
    #footer .hours-table td.closed { color: rgba(255,255,255,0.35); }
    #footer .newsletter-form .form-control { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 0.8125rem; border-radius: 6px 0 0 6px; padding: 0.55rem 0.85rem; }
    #footer .newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
    #footer .newsletter-form .form-control:focus { background: rgba(255,255,255,0.1); border-color: var(--cnvs-themecolor); box-shadow: none; }
    #footer .newsletter-form .btn-subscribe { background: var(--cnvs-themecolor); border: none; color: #1a2c3d; font-weight: 700; font-size: 0.8125rem; border-radius: 0 6px 6px 0; padding: 0.55rem 0.9rem; white-space: nowrap; transition: background 0.2s; }
    #footer .newsletter-form .btn-subscribe:hover { background: #fbc02d; }
    #footer .status-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 600; color: #4caf93; background: rgba(76,175,147,0.12); border: 1px solid rgba(76,175,147,0.25); border-radius: 20px; padding: 0.2rem 0.65rem; margin-bottom: 0.75rem; }
    #footer .status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4caf93; animation: pulse-dot 1.8s ease-in-out infinite; }
    @keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
    #footer .divider-footer { border-color: rgba(255,255,255,0.08); margin: 0; }
    #copyrights { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); }
    #copyrights .copyright-links a, #copyrights a { color: rgba(255,255,255,0.45); font-size: 0.8125rem; transition: color 0.2s; }
    #copyrights .copyright-links a:hover, #copyrights a:hover { color: var(--cnvs-themecolor); }
    #copyrights .col-copyrights-text { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
    .footer-sunray { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 3px; background: linear-gradient(90deg, transparent, var(--cnvs-themecolor), transparent); opacity: 0.6; pointer-events: none; }
  