/* ==========================================================================
   STYLE.CSS — Mulan Neurodiversity School (MNS)
   Matches Penpot design pixel-for-pixel using tokens.css
   ========================================================================== */

/* --- Global Reset & Base Setup --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body-main);
  color: var(--text-color-2);
  background-color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.25s ease;
}

/* --- Utility Classes --- */
.text-pink {
  color: var(--color-primary) !important;
}

.text-navy {
  color: var(--color-primary-2) !important;
}

.text-teal {
  color: var(--color-primary-3) !important;
}

.text-gray {
  color: var(--text-color-1) !important;
}

.text-center {
  text-align: center;
}

.section-container {
  max-width: var(--canvas-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

/* Category Pills */
.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: fit-content;
  align-self: flex-start;
  background-color: rgba(231, 70, 115, 0.12);
  color: var(--color-primary);
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 160px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.category-pill-center {
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.category-pill-testimonial {
  background-color: rgba(231, 70, 115, 0.25);
  color: var(--color-primary);
}

/* Headings */
.section-heading-large {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-heading {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-heading-white {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 40px;
}

.section-subheading {
  font-size: var(--font-size-body-main);
  color: var(--text-color-2);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  margin-bottom: 48px;
}

/* Standard Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  border-radius: 18px;
  padding: 14px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(231, 70, 115, 0.3);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-large {
  padding: 18px 36px;
  font-size: var(--font-size-button-1);
  border-radius: 28px;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-primary);
  height: 40px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  color: var(--color-white);
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
}

.ticker-icon {
  width: 20px;
  height: 20px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 0 24px;
}

.nav-container {
  max-width: 1236px;
  margin: 0 auto;
  height: 80px;
  background-color: var(--color-white);
  border-radius: var(--radius-button);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 39px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 39px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: var(--font-size-body-main);
  font-weight: 700;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.nav-link.active,
.nav-link:hover {
  color: var(--color-primary);
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Navigation Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 230px;
  background-color: var(--color-white);
  border: 1px solid var(--color-1);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-button-2);
  font-weight: 500;
  color: var(--text-color-1);
  transition: color 0.2s ease;
}

.dropdown-item:hover {
  color: var(--color-primary);
}

.dropdown-icon-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--color-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-icon-box img {
  width: 12px;
  height: 12px;
}

/* Nav CTA Button */
.btn-nav-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-button-1);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 13px;
  display: inline-block;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-nav-cta:hover {
  background-color: #d63763;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  background-color: var(--color-primary-2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   1. HERO SECTION — Full-width Layout
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark on left, fading to transparent on right to allow the kids to be seen */
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(23, 36, 99, 0) 80%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--canvas-width);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(1.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-hero {
  padding: 16px 36px;
  font-size: var(--font-size-button-1);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(231, 70, 115, 0.3);
}

.btn-hero:hover {
  box-shadow: 0 6px 28px rgba(231, 70, 115, 0.4);
  transform: translateY(-2px);
}

.btn-link-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-button-1);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero-secondary {
  background-color: var(--color-white);
  color: var(--color-primary-2);
  border: none;
}

.btn-hero-secondary:hover {
  background-color: #f0f0f0;
  color: var(--color-primary-2);
  transform: translateY(-2px);
}

.btn-hero-secondary .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-hero-secondary:hover .btn-arrow {
  transform: translateX(3px);
}

/* --- Hero Animations --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations only if user prefers motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-content [data-hero-animate-child] {
    opacity: 0;
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-content [data-hero-animate-child]:nth-child(1) { animation-delay: 0.1s; }
  .hero-content [data-hero-animate-child]:nth-child(2) { animation-delay: 0.22s; }
  .hero-content [data-hero-animate-child]:nth-child(3) { animation-delay: 0.34s; }
  .hero-content [data-hero-animate-child]:nth-child(4) { animation-delay: 0.46s; }
}

/* ==========================================================================
   2. ABOUT US SECTION
   ========================================================================== */
.about-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-lead {
  font-size: var(--font-size-body-main);
  color: var(--text-color-1);
  line-height: 1.5;
  margin-bottom: 32px;
}

.quote-callout {
  background-color: var(--color-light);
  border-radius: var(--radius-image);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.quote-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: var(--font-size-accent);
  font-style: italic;
  color: var(--color-primary-2);
  line-height: 1.4;
}

.about-center-col {
  position: relative;
}

.about-main-img-card {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 34px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-accent-card {
  background-color: var(--color-primary);
  border-radius: 34px;
  padding: 36px 32px;
  color: var(--color-white);
}

.accent-card-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
}

.about-secondary-img-card {
  border-radius: 34px;
  overflow: hidden;
  flex-grow: 1;
}

.about-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   3. PROGRAMMES SECTION
   ========================================================================== */
.programmes-section {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: var(--color-white);
  overflow: hidden;
}

.programmes-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 40px auto 48px;
  padding: 0 54px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programmes-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programme-card {
  position: absolute;
  top: 50%;
  width: 380px;
  height: 310px;
  border-radius: 40px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, box-shadow 0.5s ease, left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
  cursor: pointer;
  -webkit-user-drag: none;
  will-change: transform, opacity, left;
}

/* Center active card */
.programme-card.active-card {
  left: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  z-index: 3;
  opacity: 1;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  pointer-events: auto;
}

/* Left card */
.programme-card.card-prev {
  left: calc(50% - 370px);
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2;
  opacity: 0.85;
  pointer-events: auto;
}

/* Right card */
.programme-card.card-next {
  left: calc(50% + 370px);
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2;
  opacity: 0.85;
  pointer-events: auto;
}

/* Hidden off-screen left */
.programme-card.card-hidden-left {
  left: calc(50% - 750px);
  transform: translate(-50%, -50%) scale(0.72);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Hidden off-screen right */
.programme-card.card-hidden-right {
  left: calc(50% + 750px);
  transform: translate(-50%, -50%) scale(0.72);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.programme-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.programme-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.programme-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px 32px;
  color: var(--color-white);
  z-index: 2;
  pointer-events: none;
}

.programme-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.programme-desc {
  font-size: var(--font-size-body-main);
  line-height: 1.4;
  opacity: 0.92;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 6px 16px rgba(231, 70, 115, 0.35);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-arrow-left {
  left: 8px;
}

.carousel-arrow-right {
  right: 8px;
}

.carousel-arrow:hover {
  background-color: #d63763;
  transform: translateY(-50%) scale(1.08);
}

/* ==========================================================================
   4. PARTNERS & ACCREDITATIONS
   ========================================================================== */
.partners-section {
  padding: 40px 32px;
}

.partners-banner {
  max-width: 1231px;
  margin: 0 auto;
  background-color: var(--color-primary-3);
  border-radius: var(--radius-image);
  padding: 48px 40px;
  text-align: center;
  color: var(--color-white);
}

.partners-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 8px;
}

.partners-underline {
  width: 590px;
  max-width: 80%;
  height: 4px;
  background-color: var(--color-2);
  border-radius: 4px;
  margin: 0 auto 36px;
}

.partners-carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 8px 0;
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersMarquee 45s linear infinite;
  will-change: transform;
}

.partners-carousel-wrap:hover .partners-marquee-track {
  animation-play-state: paused;
}

.partners-logos-group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  flex-shrink: 0;
}

.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item img {
  max-height: 60px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.partner-logo-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes partnersMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   5. OUR STORY (VIDEO SECTION)
   ========================================================================== */
.story-section {
  background-color: var(--color-light);
  padding-top: 90px;
  padding-bottom: 90px;
}

.video-container {
  max-width: 948px;
  height: 575px;
  margin: 0 auto;
  border-radius: 53px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #000;
}

.video-container iframe,
.video-container .video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-container.is-playing {
  cursor: default;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.3);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.video-play-btn img {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: rgba(231, 70, 115, 0.4);
}

/* ==========================================================================
   6. CTA SECTION (WHO WE SUPPORT & LET'S TALK)
   ========================================================================== */
.cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  border-radius: 39px;
  padding: 44px 40px;
  min-height: 298px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Left Card: Who We Support */
.cta-card-support {
  background-color: rgba(231, 70, 115, 0.15);
}

.cta-quote-icon {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 44px;
  height: 44px;
}

.support-card-content {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.support-thumb-wrap {
  width: 190px;
  height: 160px;
  border-radius: 29px;
  overflow: hidden;
  flex-shrink: 0;
}

.support-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-support-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.cta-support-desc {
  font-size: var(--font-size-body-main);
  color: var(--text-color-2);
  line-height: 1.4;
}

/* Right Card: Let's Talk */
.cta-card-talk {
  background-color: var(--color-primary-2);
  color: var(--color-white);
}

.cta-talk-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.cta-talk-desc {
  font-size: var(--font-size-body-lead);
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 28px;
}

.btn-cta-talk {
  align-self: flex-start;
}

/* ==========================================================================
   7. SCHOOL TOUR / ENVIRONMENT GLIMPSE
   ========================================================================== */
.tour-section {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.tour-strip-wrapper {
  width: 100%;
  margin: 0 auto 32px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
}

.tour-strip-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.tour-strip-wrapper.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
}

.tour-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 30px 0;
  box-sizing: border-box;
}

.tour-card {
  position: relative;
  width: 440px;
  height: 285px;
  border-radius: 36px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0.72;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.tour-card:hover {
  opacity: 0.88;
}

.tour-card.active-tour-card {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.tour-label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: var(--color-white);
  font-size: var(--font-size-body-main);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}

.tour-controls-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.tour-scroll-track {
  width: 100%;
  height: 7px;
  background-color: var(--color-1);
  border-radius: 170px;
  position: relative;
  margin-bottom: 16px;
  cursor: pointer;
  user-select: none;
}

.tour-scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 170px;
  cursor: grab;
  touch-action: none;
}

body.is-dragging-thumb,
body.is-dragging-thumb * {
  cursor: grabbing !important;
  user-select: none !important;
}

.tour-labels-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-sub-label {
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  letter-spacing: 2px;
}

.tour-sub-left {
  color: var(--text-color-1);
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--color-primary-2);
  padding-top: 90px;
  padding-bottom: 90px;
}

.testimonials-carousel-wrapper {
  max-width: 1400px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 54px;
  height: 440px;
  overflow: hidden;
}

.testimonials-cards-row {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  position: absolute;
  top: 50%;
  width: 340px;
  min-height: 310px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 32px 26px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease, left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
  cursor: pointer;
  -webkit-user-drag: none;
  will-change: transform, opacity, left;
}

/* Center Active Card */
.testimonial-card.active-test-card {
  left: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

/* Left Card */
.testimonial-card.test-prev {
  left: calc(50% - 370px);
  transform: translate(-50%, -50%) scale(0.92);
  background-color: rgba(255, 255, 255, 0.07);
  z-index: 2;
  opacity: 0.75;
  pointer-events: auto;
}

/* Right Card */
.testimonial-card.test-next {
  left: calc(50% + 370px);
  transform: translate(-50%, -50%) scale(0.92);
  background-color: rgba(255, 255, 255, 0.07);
  z-index: 2;
  opacity: 0.75;
  pointer-events: auto;
}

/* Hidden off-screen left */
.testimonial-card.test-hidden-left {
  left: calc(50% - 750px);
  transform: translate(-50%, -50%) scale(0.72);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Hidden off-screen right */
.testimonial-card.test-hidden-right {
  left: calc(50% + 750px);
  transform: translate(-50%, -50%) scale(0.72);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.test-quote-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  opacity: 0.9;
  pointer-events: none;
}

.test-quote-body {
  font-size: var(--font-size-button-2);
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.95;
  pointer-events: none;
}

.test-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.test-author-avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

.test-author-name {
  font-size: var(--font-size-button-2);
  font-weight: 600;
  color: var(--color-white);
}

.test-author-role {
  font-size: var(--font-size-meta);
  color: rgba(255, 255, 255, 0.75);
}

.test-arrow {
  width: 44px;
  height: 44px;
  color: var(--color-white);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.test-arrow-left {
  left: 8px;
}

.test-arrow-right {
  right: 8px;
}

.test-arrow:hover {
  background-color: var(--color-primary);
  transform: translateY(-50%) scale(1.08);
}

/* ==========================================================================
   9. RECENT POSTS SECTION
   ========================================================================== */
.posts-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.posts-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.view-all-link {
  font-size: var(--font-size-body-main);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.link-arrow-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  border-radius: 20px;
  border: 1px solid var(--color-1);
  overflow: hidden;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.post-img-wrap {
  height: 240px;
  overflow: hidden;
}

.post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-img {
  transform: scale(1.05);
}

.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta {
  font-size: var(--font-size-meta);
  font-weight: 600;
  color: var(--text-color-1);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.post-title {
  font-size: var(--font-size-accent);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: var(--font-size-meta);
  color: #000000;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-read-more {
  margin-top: auto;
  font-size: var(--font-size-button-2);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
}

.read-more-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  margin-top: 2px;
}

/* ==========================================================================
   10. FREQUENTLY ASKED QUESTIONS SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--color-light);
  padding-top: 90px;
  padding-bottom: 90px;
}

.faq-accordion-list {
  max-width: 832px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.faq-question {
  font-size: var(--font-size-h5);
  font-weight: 600;
  color: var(--text-color-2);
}

.faq-icon-minus {
  display: none;
}

.faq-item.active .faq-icon-plus {
  display: none;
}

.faq-item.active .faq-icon-minus {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-answer p {
  font-size: var(--font-size-body-main);
  color: var(--text-color-1);
  line-height: 1.5;
}

.faq-callout-card {
  max-width: 710px;
  margin: 0 auto;
  background-color: var(--color-primary-2);
  border-radius: 20px;
  padding: 36px 40px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.faq-callout-text {
  font-size: var(--font-size-h5);
  font-weight: 600;
  line-height: 1.4;
}

.btn-faq-kb {
  padding: 14px 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-light);
  padding-top: 80px;
  padding-bottom: 32px;
  border-top: 1px solid var(--color-1);
}

.footer-container {
  max-width: var(--canvas-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: var(--font-size-meta);
  color: var(--text-color-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.footer-title {
  font-size: var(--font-size-h5);
  font-weight: 600;
  color: var(--text-color-2);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: var(--font-size-button-2);
  color: #000000;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.office-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-size-button-2);
  color: var(--text-color-2);
}

.office-item.address-item {
  border: 1px solid var(--color-1);
  padding: 12px 16px;
  border-radius: 12px;
}

.office-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--color-1);
}

.copyright-text {
  font-size: var(--font-size-meta);
  color: var(--text-color-2);
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-hero-section {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 80px;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-2);
  z-index: 1;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(23, 36, 99, 0.4) 0%, rgba(23, 36, 99, 0.92) 80%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 16px;
}

.contact-hero-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Main Contact Section */
.contact-main-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 486px 1fr;
  gap: 38px;
  align-items: start;
}

.contact-section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-primary-2);
  line-height: 1.2;
  margin-bottom: 28px;
}

.contact-cards-container {
  background-color: var(--color-white);
  border-radius: 19px;
  border: 1px solid var(--color-1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 23px;
  border: 1px solid var(--color-1);
  background-color: var(--color-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid var(--color-1);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box img {
  width: 24px;
  height: 24px;
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
}

.contact-card-value {
  font-size: var(--font-size-h5);
  font-weight: 500;
  color: var(--text-color-2);
  line-height: 1.3;
}

.contact-card-value:hover {
  color: var(--color-primary);
}

.contact-social-card {
  background-color: var(--color-white);
  border-radius: 19px;
  border: 1px solid var(--color-1);
  padding: 24px 28px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.social-card-label {
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-color-1);
}

.contact-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-social-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid var(--color-1);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.contact-social-btn img {
  width: 22px;
  height: 22px;
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--color-white);
  border-radius: 33px;
  border: 1px solid var(--color-1);
  padding: 44px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.form-header-icon {
  width: 59px;
  height: 59px;
  border-radius: 12px;
  border: 1px solid var(--color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header-icon img {
  width: 28px;
  height: 28px;
}

.form-header-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-primary-2);
  line-height: 1.2;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
}

.form-input {
  height: 65px;
  border-radius: 17px;
  border: 1px solid var(--color-1);
  padding: 0 24px;
  font-family: var(--font-primary);
  font-size: var(--font-size-accent);
  color: var(--text-color-2);
  background-color: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(231, 70, 115, 0.15);
}

.form-input::placeholder {
  color: #b1b2b5;
}

.form-textarea {
  min-height: 186px;
  border-radius: 17px;
  border: 1px solid var(--color-1);
  padding: 20px 24px;
  font-family: var(--font-primary);
  font-size: var(--font-size-accent);
  color: var(--text-color-2);
  background-color: var(--color-white);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(231, 70, 115, 0.15);
}

.form-textarea::placeholder {
  color: #b1b2b5;
}

.btn-submit-message {
  width: 100%;
  height: 77px;
  border-radius: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-accent);
  font-weight: 700;
  margin-top: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit-message:hover {
  background-color: #d63763;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 70, 115, 0.3);
}

/* Parent Enquiry Banner */
.parent-enquiry-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.parent-enquiry-banner {
  max-width: 1196px;
  margin: 0 auto;
  border-radius: 40px;
  background-color: var(--color-primary);
  padding: 56px 40px;
  text-align: center;
  color: var(--color-white);
}

.category-pill-white {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 28px;
  border-radius: 160px;
  margin-bottom: 20px;
}

.parent-enquiry-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.parent-enquiry-desc {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 36px;
}

.btn-enquiry-submit {
  width: 458px;
  max-width: 100%;
  height: 77px;
  border-radius: 24px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: var(--font-size-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-enquiry-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Visit Premises (Map Section) */
.visit-premises-section {
  padding-top: 60px;
  padding-bottom: 90px;
}

.visit-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.visit-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--text-color-1);
  margin-bottom: 40px;
}

.map-container {
  max-width: 1191px;
  height: 565px;
  border-radius: 47px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background-color: var(--color-1);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   MNS FAQ PAGE SPECIFIC STYLES
   ========================================================================== */
.faq-page-main {
  background-color: var(--color-white);
}

.faq-header-section {
  padding-top: 150px;
  padding-bottom: 40px;
}

.faq-page-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-page-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--text-color-1);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

.faq-search-wrapper {
  max-width: 708px;
  height: 73px;
  border-radius: 25px;
  background-color: #f0f4f6;
  border: 1px solid var(--color-1);
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-wrapper:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(231, 70, 115, 0.15);
}

.faq-search-input {
  flex-grow: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: var(--font-size-accent);
  color: var(--text-color-2);
}

.faq-search-input::placeholder {
  color: var(--text-color-1);
}

.faq-search-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-search-btn img {
  width: 22px;
  height: 22px;
}

/* FAQ Groups */
.faq-groups-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.faq-groups-wrapper {
  max-width: 954px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.faq-group-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-group-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 15px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-group-icon-box img {
  width: 65px;
  height: 65px;
}

.faq-group-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.faq-group-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-card {
  border-radius: 15px;
  background-color: var(--color-white);
  border: 1px solid var(--color-1);
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion-card.active {
  background-color: var(--color-primary-2);
  border-color: var(--color-primary-2);
  box-shadow: 0 8px 24px rgba(23, 36, 99, 0.15);
}

.faq-accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
}

.faq-accordion-question {
  font-size: var(--font-size-h5);
  font-weight: 600;
  color: var(--text-color-1);
  transition: color 0.25s ease;
}

.faq-accordion-card.active .faq-accordion-question {
  color: var(--color-primary);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-toggle-icon .icon-minus {
  display: none;
  width: 18px;
  height: 18px;
}

.faq-toggle-icon .icon-plus {
  display: block;
  width: 18px;
  height: 18px;
}

.faq-accordion-card.active .faq-toggle-icon .icon-minus {
  display: block;
}

.faq-accordion-card.active .faq-toggle-icon .icon-plus {
  display: none;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-accordion-card.active .faq-accordion-body {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-accordion-body p {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
}

/* FAQ Bottom CTA Banner */
.faq-cta-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.faq-cta-banner {
  max-width: 1196px;
  margin: 0 auto;
  border-radius: 40px;
  background-color: var(--color-primary);
  padding: 56px 40px;
  text-align: center;
  color: var(--color-white);
}

.faq-cta-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-cta-desc {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 36px;
}

.faq-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-faq-cta {
  width: 271px;
  max-width: 100%;
  height: 62px;
  border-radius: 20px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: var(--font-size-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-cta-phone {
  font-size: var(--font-size-accent);
  font-weight: 700;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.faq-cta-phone:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   BLOG & UPDATES PAGE SPECIFIC STYLES
   ========================================================================== */
.blog-page-main {
  background-color: var(--color-white);
}

.blog-header-section {
  padding-top: 150px;
  padding-bottom: 32px;
}

.blog-page-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.blog-page-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--text-color-1);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

.blog-filter-container {
  max-width: 954px;
  height: 87px;
  border-radius: 25px;
  background-color: #e4e4e5;
  margin: 36px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
}

.blog-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  overflow-x: auto;
}

.blog-tab {
  padding: 14px 28px;
  border-radius: 18px;
  font-family: var(--font-primary);
  font-size: var(--font-size-eyebrow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-color-1);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.blog-tab:hover:not(.active) {
  color: var(--color-primary);
}

.blog-tab.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(231, 70, 115, 0.3);
}

.blog-grid-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1196px;
  margin: 0 auto;
}

/* ==========================================================================
   PHOTO GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.gallery-page-main {
  background-color: var(--color-white);
}

.gallery-header-section {
  padding-top: 150px;
  padding-bottom: 32px;
}

.gallery-page-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gallery-page-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--text-color-1);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

.gallery-grid-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.gallery-bento-grid {
  max-width: 1196px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 271px;
  gap: 25px;
}

.gallery-item {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: var(--color-1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.gallery-item.item-1x1 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.item-2x1 {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item.item-1x2 {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item.item-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

/* Lightbox Modal */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 40px;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.15);
}

/* ==========================================================================
   VIDEO HIGHLIGHTS PAGE SPECIFIC STYLES
   ========================================================================== */
.video-page-main {
  background-color: var(--color-white);
}

.video-header-section {
  padding-top: 150px;
  padding-bottom: 32px;
}

.video-page-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.video-page-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--text-color-1);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

.video-grid-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1196px;
  margin: 0 auto;
}

.video-card {
  width: 100%;
  height: 356px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  background-color: var(--color-1);
}

.video-thumb-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.video-play-overlay-btn img {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-card:hover .video-play-overlay-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--color-white);
  box-shadow: 0 8px 24px rgba(231, 70, 115, 0.4);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  max-width: 800px;
  width: 100%;
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-modal-header {
  padding: 20px 24px;
  background-color: var(--color-primary-2);
  color: var(--color-white);
}

.video-modal-title {
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-white);
}

.video-player-container {
  position: relative;
  width: 100%;
  height: 450px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-player {
  width: 100%;
  height: 100%;
  position: relative;
}

.modal-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-indicator img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  margin-left: 4px;
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 40px;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.15);
}

/* ==========================================================================
   PROGRAMMES PAGE SPECIFIC STYLES
   ========================================================================== */
.programmes-page-main {
  background-color: var(--color-white);
}

/* Hero Section */
.programmes-hero-section {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 70px;
  overflow: hidden;
}

.programmes-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.programmes-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programmes-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 36, 99, 0.65);
}

.programmes-hero-content {
  position: relative;
  z-index: 2;
}

.category-pill-hero {
  background-color: rgba(231, 70, 115, 0.2);
  color: var(--color-primary);
  border: 1px solid rgba(231, 70, 115, 0.3);
  backdrop-filter: blur(4px);
}

.programmes-hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  color: #eaf2f4;
  margin: 16px 0;
}

.programmes-hero-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  max-width: 903px;
  margin: 0 auto;
}

/* Programmes List Rows */
.programmes-list-section {
  background-color: #eaf2f4;
  padding-top: 90px;
  padding-bottom: 90px;
}

.programmes-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 90px;
  max-width: 1200px;
  margin: 0 auto;
}

.programme-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.programme-detail-row-reverse {
  flex-direction: row-reverse;
}

.programme-detail-content {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.programme-number-badge {
  width: 102px;
  height: 102px;
  border-radius: 25px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

.programme-number {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--color-primary);
  line-height: 1;
}

.programme-detail-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-primary-2);
  line-height: 1.2;
  margin-bottom: 20px;
}

.programme-detail-desc {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  color: var(--text-color-2);
  line-height: 1.4;
  margin-bottom: 32px;
}

.btn-explore-more {
  width: 193px;
  height: 55px;
  border-radius: 18px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-explore-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 70, 115, 0.35);
}

.programme-detail-media {
  width: 585px;
  height: 545px;
  border-radius: 35px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  background-color: var(--color-white);
}

.programme-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.programme-detail-row:hover .programme-detail-img {
  transform: scale(1.03);
}

/* Programmes CTA Section */
.programmes-cta-section {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: var(--color-white);
}

/* ==========================================================================
   SINGLE PROGRAMME / SENSORY SUPPORT PAGE SPECIFIC STYLES
   ========================================================================== */
.programme-single-page {
  background-color: var(--color-white);
}

/* Hero */
.programme-single-hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
}

.programme-single-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.programme-single-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programme-single-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 36, 99, 0.65);
}

.programme-single-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.programme-single-hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 16px;
}

.programme-single-hero-subtitle {
  font-size: var(--font-size-body-lead);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  max-width: 774px;
  margin: 0 auto;
}

/* Overlapping White Detail Card */
.programme-overview-section {
  margin-top: -60px;
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
}

.programme-overview-card {
  max-width: 1196px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 70px 60px;
}

.programme-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* Narrative Left Column */
.overview-narrative-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-main-heading {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-2);
  margin-top: 4px;
}

.overview-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-body-main);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color-2);
}

.overview-quote-box {
  margin-top: 10px;
  background-color: #eaf2f4;
  border-radius: 25px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.quote-icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.quote-text {
  font-size: var(--font-size-body-main);
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary-2);
  line-height: 1.4;
  margin: 0;
}

/* Sub-block in narrative column (e.g. Specialized Education) */
.overview-sub-block {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overview-sub-heading {
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-2);
}

.overview-sub-desc {
  font-size: var(--font-size-body-main);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color-2);
}


/* Benefits Right Column */
.overview-benefits-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-benefits-heading {
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-2);
  margin-top: 4px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border-radius: 16px;
  background-color: #f9fbfc;
  border: 1px solid var(--color-1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.benefit-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #eaf2f4;
  color: var(--color-primary-2);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-label {
  font-size: var(--font-size-accent);
  font-weight: 600;
  color: var(--color-primary-2);
  line-height: 1.3;
}

/* Other Areas Of Our Expertise */
.other-expertise-section {
  background-color: #eaf2f4;
  padding-top: 80px;
  padding-bottom: 90px;
}

.other-expertise-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.other-expertise-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--color-primary-2);
  line-height: 1.1;
  margin-top: 8px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-button-1);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.view-all-link:hover {
  transform: translateX(4px);
}

.other-expertise-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-card {
  background-color: var(--color-white);
  border-radius: 25px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 375px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.expertise-card-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.expertise-card-desc {
  font-size: var(--font-size-body-main);
  font-weight: 400;
  color: var(--text-color-2);
  line-height: 1.5;
  margin-bottom: 30px;
  flex-grow: 1;
}

.expertise-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-button-1);
  font-weight: 700;
  color: var(--color-primary-2);
  text-decoration: none;
}

.expertise-card-link .link-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.2s ease;
}

.expertise-card:hover .link-line {
  width: 38px;
}

/* Programme CTA Section */
.programme-cta-section {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: var(--color-white);
}







