@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand-primary: #0074c5;
  --brand-secondary: #ffb703;
  --brand-navy: #0074c5;
  --brand-emerald: #52b788;
  --brand-rose: #ff6b9d;
  --brand-amber: #fb8500;
  --slate-50: #f7f9fc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--slate-800);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.font-display {
  font-family: "Outfit", sans-serif;
}
.italic-display {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}
.text-brand-primary {
  color: var(--brand-primary) !important;
}
.text-brand-secondary {
  color: var(--brand-secondary) !important;
}
.text-brand-navy {
  color: var(--brand-navy) !important;
}
.bg-brand-primary {
  background: var(--brand-primary) !important;
}
.bg-brand-secondary {
  background: var(--brand-secondary) !important;
}
.bg-brand-navy {
  background: var(--brand-navy) !important;
}
.bg-slate-50 {
  background: var(--slate-50) !important;
}
.bg-slate-100 {
  background: var(--slate-100) !important;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}
.max-site {
  max-width: 1280px;
}

.geometric-label {
  color: var(--slate-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.table-text {
  color: var(--slate-400);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.geometric-border-left {
  position: relative;
  padding-left: 2rem;
}

.geometric-border-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--brand-primary);
}

.btn-square {
  border-radius: 0;
  border: 0;
  padding: 1.1rem 2.25rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-primary-sc {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 20px 35px rgba(0, 116, 197, 0.18);
}
.btn-primary-sc:hover {
  background: var(--brand-navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-secondary-sc {
  background: var(--brand-secondary);
  color: var(--brand-navy);
  box-shadow: 0 20px 35px rgba(255, 183, 3, 0.18);
}
.btn-secondary-sc:hover {
  background: #fff;
  color: var(--brand-navy);
  transform: translateY(-2px);
}
.btn-outline-light-sc {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}
.btn-outline-light-sc:hover {
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 8rem;
  background: #0074c5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand-logo {
  width: 100%;
  height: 7rem;
  object-fit: contain;
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.brand-title {
  font-size: 13px;
  line-height: 0.9;
  color: #fff;
  margin: 0;
}
.brand-tag {
  color: rgba(255, 183, 3, 0.9);
  font-size: 6px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.3em;
}

.nav-link-sc {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.55rem 0.75rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-link-sc:hover,
.nav-link-sc.active {
  color: var(--brand-secondary);
}
.nav-link-sc::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0;
  height: 2px;
  background: var(--brand-secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s ease;
}
.nav-link-sc:hover::after,
.nav-link-sc.active::after {
  transform: scaleX(1);
}
.dropdown-menu-sc {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--brand-navy);
  min-width: 250px;
  padding: 0.8rem 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
.dropdown-menu-sc .dropdown-item {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
}
.dropdown-menu-sc .dropdown-item:hover {
  color: var(--brand-secondary);
  background: rgba(255, 255, 255, 0.05);
}
.dropdown:hover .dropdown-menu-sc,
.dropdown:focus-within .dropdown-menu-sc {
  display: block;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(0, 63, 110, 0.99);
  z-index: 1005;
  transform: translateX(100%);
  transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-panel.open {
  transform: translateX(0);
}
.mobile-link {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.mobile-link.sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
}
.menu-toggle {
  position: relative;
  z-index: 1010;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: 0.25s ease;
}
.menu-toggle span:nth-child(2) {
  background: var(--brand-secondary);
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.pt-nav {
  padding-top: 10rem;
}
.page-top {
  padding-top: 14rem;
}

.hero-slider {
  height: 85vh;
  min-height: 600px;
  margin-top: 10rem;
  position: relative;
  overflow: hidden;
}
.hero-track {
  height: 100%;
  display: flex;
  transition: transform 1s ease;
}
.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 63, 110, 0.78),
    rgba(0, 63, 110, 0.18),
    rgba(0, 0, 0, 0.05)
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-content-inner {
  max-width: 690px;
  pointer-events: auto;
}
.hero-title {
  font-size: 94px;
  color: #fff;
  line-height: 0.84;
  margin-bottom: 2rem;
  margin-top: 6px;
}
.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
  max-width: 590px;
  line-height: 1.75;
  font-weight: 600;
}
.slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}
.slider-dot {
  border: 0;
  height: 8px;
  width: 8px;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}
.slider-dot.active {
  width: 48px;
  background: var(--brand-secondary);
}

.section-pad {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-pad-lg {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: 60px;
  line-height: 0.95;
  color: var(--brand-navy);
}
.section-title-sm {
  font-size: 40px;
  line-height: 1;
  color: var(--brand-navy);
}

.section-title-fes {
  font-size: 58px;
  line-height: 1;
  color: var(--brand-navy);
}

.decorative-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    radial-gradient(
      circle at 5% 10%,
      var(--brand-primary) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 85% 16%,
      var(--brand-primary) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 12% 80%,
      var(--brand-primary) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 90% 75%,
      var(--brand-primary) 0 1px,
      transparent 2px
    );
  background-size: 120px 120px;
}

.image-frame {
  position: relative;
}
.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 183, 3, 0.12);
  transform: rotate(2deg) translate(14px, 14px);
}
.image-frame.primary::before {
  background: rgba(0, 116, 197, 0.1);
  transform: rotate(-2deg);
}
.image-frame > .frame-inner {
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  background: #fff;
}
.frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}
.frame-inner:hover img {
  transform: scale(1.05);
}

.card-sc {
  border: 1px solid var(--slate-100);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
}
.card-sc > .p-4.d-flex.flex-column.h-100 {
  height: auto !important;
  min-height: 0;
  flex: 1 1 auto;
}
.card-sc:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 116, 197, 0.25);
}
.card-img-fixed {
  height: 250px;
  object-fit: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.card-img-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #1e5a85, transparent);
}

.feature-illustration {
  height: 175px;
  background: rgba(247, 249, 252, 0.75);
  display: grid;
  place-items: center;
  position: relative;
}
.feature-illustration .icon-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  color: var(--brand-primary);
  font-size: 2rem;
}
.tag-mini {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(255, 183, 3, 0.14);
  padding: 0.3rem 0.45rem;
  display: inline-block;
}

.tag-min {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb703;
  background: rgba(255, 183, 3, 0.14);
  padding: 0.3rem 0.45rem;
  display: inline-block;
}

.horizontal-slider {
  overflow: hidden;
}
.slider-row {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.slider-item {
  flex: 0 0 calc((100% - 4.5rem) / 4);
}
.slider-item.three {
  flex-basis: calc((100% - 4rem) / 3);
}
.domain-stage {
  min-height: 620px;
  position: relative;
}
.domain-slide {
  display: none;
}
.domain-slide.active {
  display: block;
  animation: fade-up 0.45s ease both;
}

.table-sc {
  border: 1px solid var(--slate-100);
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}
.table-head-sc {
  background: #003f6e;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.activity-row {
  padding: 1.4rem;
  border-top: 1px solid var(--slate-100);
  transition: 0.2s ease;
}
.activity-row:hover {
  background: var(--slate-50);
}
.activity-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
}

.program-hero {
  height: 45vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.program-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s ease;
}
.program-hero img.active {
  opacity: 1;
}
.program-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 63, 110, 0.34);
}
.program-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}
.program-section,
#preschool-programs,
#extended-preschool {
  scroll-margin-top: 11rem;
}
.program-section {
  display: none;
}
.program-section.active {
  display: flex;
}
.program-age-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  background: var(--brand-navy);
  color: #fff;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.subtab-btn.is-hidden {
  display: none;
}

.tab-btn,
.filter-btn {
  border: 0;
  background: var(--slate-50);
  color: var(--slate-500);
  padding: 0.9rem 1.8rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.tab-btn.active,
.filter-btn.active {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 63, 110, 0.15);
}
.subtab-btn {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.6rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.subtab-btn.active {
  color: var(--brand-navy);
  border-color: var(--brand-primary);
}

.gallery-card {
  height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--slate-100);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}
.gallery-card:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 63, 110, 0.72);
  opacity: 0;
  transition: 0.3s ease;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.faq-item {
  border: 1px solid var(--slate-100);
  background: #fff;
  margin-bottom: 1.4rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--slate-500);
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
}
.faq-question:hover {
  color: var(--brand-navy);
}
.faq-answer {
  display: none;
  padding: 1.8rem;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.75;
}
.faq-item.open {
  border-color: var(--brand-primary);
  background: rgba(247, 249, 252, 0.6);
}
.faq-item.open .faq-answer {
  display: block;
  animation: fade-up 0.25s ease both;
}
.faq-plus {
  width: 40px;
  height: 40px;
  border: 1px solid var(--slate-200);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
  flex: 0 0 auto;
}
.faq-item.open .faq-plus {
  background: var(--brand-primary);
  color: #fff;
  transform: rotate(45deg);
  border-color: var(--brand-primary);
}

.blog-hero {
  height: 50vh;
  min-height: 390px;
  position: relative;
  overflow: hidden;
}
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 63, 110, 0.68);
  backdrop-filter: blur(2px);
}
.blog-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.blog-body {
  margin-top: -5rem;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: clamp(2rem, 6vw, 5rem);
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.16);
  border-top: 4px solid var(--brand-primary);
}
.blog-body p {
  margin-bottom: 1.8rem;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.85;
}
.blog-body strong {
  color: var(--brand-navy);
  font-weight: 900;
}
.blog-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}
.blog-body th {
  background: var(--brand-navy);
  color: #fff;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.blog-body td {
  background: var(--slate-50);
  border-top: 1px solid #fff;
  padding: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.seo-tags {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  padding: 3rem 0;
}
.seo-tags span {
  color: var(--slate-400);
  font-size: 10px;
  font-weight: 600;
  margin-right: 0.35rem;
}

.site-footer {
  background: var(--brand-navy);
  color: #fff;
  padding: 5rem 0 2.5rem;
}
.footer-logo {
  height: 130px;
  width: auto;
}
.social-box {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  font-style: italic;
  transition: 0.25s ease;
}
.social-box:hover {
  background: var(--brand-primary);
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .site-header {
    height: 8.5rem;
  }
  .brand-logo {
    width: 8.5rem;
    height: 8.5rem;
  }
  .pt-nav {
    padding-top: 8.5rem;
  }
  .page-top {
    padding-top: 12.5rem;
  }
  .hero-slider {
    margin-top: 8.5rem;
  }
}

@media (max-width: 991px) {
  .slider-item,
  .slider-item.three {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
  .hero-title {
    font-size: clamp(3.1rem, 11vw, 5rem);
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 7.5rem;
  }
  .brand-logo {
    width: 6rem;
    height: 6rem;
  }
  .brand-title {
    font-size: 1.4rem;
  }
  .brand-tag {
    font-size: 8px;
    letter-spacing: 0.16em;
  }
  .pt-nav {
    padding-top: 7.5rem;
  }
  .page-top {
    padding-top: 10.5rem;
  }
  .hero-slider {
    min-height: 680px;
    margin-top: 7.5rem;
  }
  .hero-content {
    align-items: flex-end;
    padding-bottom: 7rem;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .section-pad,
  .section-pad-lg {
    padding: 4rem 0;
  }
  .geometric-border-left {
    padding-left: 1.2rem;
  }
  .slider-item,
  .slider-item.three {
    flex-basis: 100%;
  }
  .domain-stage {
    min-height: 980px;
  }
  .page-top {
    padding-top: 11rem;
  }
}

.faq-plus {
  transition: 0.3s;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  background-color: var(--brand-navy);
  color: #fff;
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--brand-primary);
}

.filter-btn.active {
  background: var(--brand-navy);
}

.faq-answer {
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.filter-btn.active {
  background: var(--brand-primary);
  color: #fff;
}
