*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #0b347a;
  --blue-mid: #1249a8;
  --blue-dark: #071f4a;
  --gold: #f2b10e;
  --white: #fff;
  --off: #f8f9fa;
  --gray: #e4eaf4;
  --text: #1a1a1a;
  --soft: #4a5568;
  --sh: 0 4px 24px rgba(11, 52, 122, 0.1);
  --shlg: 0 12px 48px rgba(11, 52, 122, 0.18);
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --r: 16px;
  --rsm: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  cursor: pointer;
}
button {
  cursor: pointer;
  font-family: inherit;
}

/* NAVBAR */
/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

/* scrolled state — white background */
nav.sc {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(11, 52, 122, 0.12);
  padding: 12px 5%;
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--ease);
}

.logo-box:hover {
  transform: scale(1.05);
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  transition: color 0.3s;
}

nav.sc .logo-name {
  color: var(--blue);
}

/* ── DESKTOP LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    color 0.3s,
    background 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

nav.sc .nav-links a {
  color: var(--soft);
}
nav.sc .nav-links a:hover {
  color: var(--blue);
  background: rgba(11, 52, 122, 0.06);
}

/* active link */
.nav-links a.active {
  color: var(--gold);
  font-weight: 700;
}

nav.sc .nav-links a.active {
  color: var(--blue);
  background: rgba(11, 52, 122, 0.07);
}

/* ── ENROLL CTA BUTTON ── */
.nav-cta {
  background: var(--gold) !important;
  color: var(--blue) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 177, 14, 0.45) !important;
  color: var(--blue) !important;
  background: rgba(255, 255, 255, 0.08);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 2100;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  display: block;
  background: #fff;
  transition:
    background 0.3s,
    transform 0.3s,
    opacity 0.3s;
}

nav.sc .hamburger span {
  background: var(--blue);
}

/* animate hamburger to X when open */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── MOBILE OVERLAY ── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    /* always rendered, just hidden — so position:fixed is always active */
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    /* hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    /* critical: never scroll with the page */
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  /* close button inside overlay */
  .menu-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }

  .menu-close:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  /* all link states inside overlay — always white, always */
  .nav-links li a,
  nav .nav-links li a,
  nav.sc .nav-links li a {
    font-size: 1.15rem !important;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    display: block;
    background: transparent !important;
  }

  .nav-links li a:hover,
  nav.sc .nav-links li a:hover {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.07) !important;
  }

  .nav-links li a.active,
  nav.sc .nav-links li a.active {
    color: var(--gold) !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  /* CTA inside mobile */
  .nav-links .nav-cta,
  nav.sc .nav-links .nav-cta {
    background: var(--gold) !important;
    color: var(--blue) !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    margin-top: 6px;
    font-size: 1rem !important;
  }
}

@media (min-width: 901px) {
  .menu-close {
    display: none !important;
  }
}
/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue) 60%,
    var(--blue-mid) 100%
  );
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 177, 14, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-left {
  animation: fadeLeft 0.9s ease both;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(242, 177, 14, 0.18);
  border: 1px solid rgba(242, 177, 14, 0.35);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 span {
  color: var(--gold);
}
.hero-sub {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 13px 26px;
  transition: all var(--ease);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 4px 18px rgba(242, 177, 14, 0.35);
}
.btn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(242, 177, 14, 0.5);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 52, 122, 0.25);
}
.btn-outline-w {
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff;
  background: transparent;
}
.btn-outline-w:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}
.hero-right {
  position: relative;
  animation: fadeRight 0.9s ease both;
}
.hero-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shlg);
  border: 3px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4/3;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
}
.float-cards {
  position: absolute;
  bottom: -18px;
  left: -18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh);
  font-size: 0.8rem;
  animation: float 3s ease-in-out infinite;
}
.fc:nth-child(2) {
  animation-delay: 0.9s;
  margin-left: 18px;
}
.fc:nth-child(3) {
  animation-delay: 1.8s;
}
.fc strong {
  color: var(--blue);
  font-weight: 700;
  display: block;
}
.fc span {
  color: var(--soft);
  font-size: 0.74rem;
}
.fc-icon {
  font-size: 1.3rem;
}

/* STATS */
.stats-s {
  background: var(--off);
  padding: 72px 5%;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh);
  border: 1px solid rgba(11, 52, 122, 0.07);
  padding: 30px 20px;
  text-align: center;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shlg);
  cursor: default;
}
.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  color: var(--blue);
  font-weight: 900;
  line-height: 1;
}
.stat-num sup {
  color: var(--gold);
  font-size: 1.5rem;
}
.stat-label {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 7px;
}

/* SECTION */
.section {
  padding: 88px 5%;
}
.si {
  max-width: 1100px;
  margin: 0 auto;
}
.sh {
  text-align: center;
  margin-bottom: 52px;
}
.sh h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--blue);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.sh p {
  color: var(--soft);
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shlg);
  aspect-ratio: 4/3;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 100%;
}
.about-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--blue);
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.mv-card {
  background: var(--off);
  border-radius: var(--rsm);
  padding: 16px;
  border-left: 4px solid var(--gold);
}
.mv-card h4 {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.mv-card p {
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.6;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: rgba(11, 52, 122, 0.08);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chip i {
  color: var(--gold);
  font-size: 0.72rem;
}

/* TUTOR INTRO */
.ti-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
.ti-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shlg);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ti-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ti-photo-ph i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.25);
}
.ti-photo-ph p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  text-align: center;
  padding: 0 20px;
}
.ti-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.ti-stat-row {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tis {
  text-align: center;
}
.tis-num {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--blue);
  font-weight: 900;
}
.tis-num sup {
  color: var(--gold);
}
.tis-label {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 600;
}
.subj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.stag {
  background: rgba(11, 52, 122, 0.09);
  color: var(--blue);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stag i {
  color: var(--gold);
}
.lang-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.lang-row span {
  color: var(--soft);
  font-size: 0.87rem;
  font-weight: 600;
}
.lang-badge {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* VIDEO */
.video-s {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 90px 5%;
  text-align: center;
}
.video-s h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.video-s > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 38px;
  font-size: 1rem;
}
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}
.video-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  transition: transform var(--ease);
  box-shadow: 0 6px 24px rgba(242, 177, 14, 0.45);
}
.play-btn:hover {
  transform: scale(1.12);
}
.video-ph p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* KIDS GALLERY */
.kids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kid-card {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: default;
}
.kid-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.kid-card:hover img {
  transform: scale(1.06);
}
.kid-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 52, 122, 0.55) 0%,
    transparent 55%
  );
}
.kid-cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh);
  border: 1px solid rgba(11, 52, 122, 0.07);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shlg);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(11, 52, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 14px;
}
.why-card h3 {
  color: var(--blue);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* COURSES */
.tab-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray);
  background: transparent;
  font-family: inherit;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--soft);
  transition: all var(--ease);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  transition: opacity 0.3s;
}
.cc {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh);
  border: 1px solid rgba(11, 52, 122, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.cc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shlg);
}
.cc-img {
  height: 175px;
  position: relative;
  overflow: hidden;
  background: var(--gray);
}
.cc-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.cc:hover .cc-img img {
  transform: scale(1.06);
}
.cc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(11, 52, 122, 0.55) 100%
  );
}
.cc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--blue);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  z-index: 2;
}
.cc-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cc-body h3 {
  color: var(--blue);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.cc-body p {
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 13px;
}
.cc-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cc-meta span {
  font-size: 0.76rem;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cc-meta i {
  color: var(--blue);
}
.btn-enroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
  font-size: 0.84rem;
  transition:
    background var(--ease),
    transform var(--ease);
}
.btn-enroll:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

/* TUTORING DARK */
.tut-s {
  background: var(--blue-dark);
}
.tut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tut-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.tut-img img {
  width: 100%;
  height: 100%;
}
.tut-content h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.tut-content > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}
.tut-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.tf {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tf-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(242, 177, 14, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.tf h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.tf p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* TUTORS SLIDER */
.slider-wrap {
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.tutor-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh);
  border: 1px solid rgba(11, 52, 122, 0.07);
  overflow: hidden;
  text-align: center;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.tutor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shlg);
}
/* .tc-img {
  height: 250px;
  overflow: hidden;
  position: relative;
} 
.tc-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
} */
.tc-img {
  height: 220px;
  aspect-ratio: 4 / 3;
}
.tc-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.4s ease;
}
.tutor-card:hover .tc-img img {
  transform: scale(1.05);
}
.tc-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.35);
}
.tc-body {
  padding: 15px 16px;
}
.tc-body h3 {
  color: var(--blue);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.tc-role {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.tc-qual {
  color: var(--soft);
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.tc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 9px;
}
.tc-chip {
  background: rgba(11, 52, 122, 0.08);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}
.tc-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.tc-meta span {
  color: var(--soft);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tc-meta i {
  color: var(--blue);
}
.sl-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}
.sl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.sl-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* TESTIMONIALS */
.testi-card {
  min-width: calc(33.333% - 15px);
  background: var(--off);
  border-radius: var(--r);
  padding: 24px 20px;
  border: 1px solid rgba(11, 52, 122, 0.08);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-card blockquote {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 16px;
}
.t-auth {
  display: flex;
  align-items: center;
  gap: 11px;
}
.t-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.t-auth strong {
  display: block;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}
.t-auth span {
  color: var(--soft);
  font-size: 0.78rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--rsm);
  border: 1px solid rgba(11, 52, 122, 0.09);
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.92rem;
  transition: background var(--ease);
}
.faq-q:hover {
  background: rgba(11, 52, 122, 0.03);
}
.faq-q i.arr {
  color: var(--gold);
  transition: transform var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-q i.arr {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 22px;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.ci-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(11, 52, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ci-item h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--soft);
  font-weight: 700;
  margin-bottom: 2px;
}
.ci-item p {
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
}
.soc-row {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--ease);
}
.soc-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.cform {
  background: var(--off);
  border-radius: var(--r);
  padding: 32px;
}
.cform h3 {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.fg {
  margin-bottom: 15px;
}
.fg label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--rsm);
  border: 2px solid var(--gray);
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--ease);
  outline: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--blue);
}
.fg textarea {
  resize: vertical;
  min-height: 100px;
}
.form-btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.btn-send {
  flex: 1;
  background: var(--blue);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition:
    background var(--ease),
    transform var(--ease);
}
.btn-send:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}
.btn-wa {
  flex: 1;
  background: #25d366;
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all var(--ease);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  transition: color var(--ease);
}
footer ul li a:hover {
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  margin-top: 14px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--ease);
}
.footer-soc:hover {
  background: var(--gold);
  color: var(--blue);
  border-color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
}
.nl-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.nl-form input {
  flex: 1;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
  font-family: inherit;
  outline: none;
}
.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.nl-form button {
  background: var(--gold);
  color: var(--blue);
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  font-family: inherit;
  transition: transform var(--ease);
}
.nl-form button:hover {
  transform: translateY(-2px);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.vis {
  opacity: 1;
  transform: none;
}

/* ANIMATIONS */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ti-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .ti-grid,
  .tut-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tutor-card {
    min-width: calc(50% - 12px);
  }
  .testi-card {
    min-width: calc(50% - 11px);
  }
  .kids-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .float-cards {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .tutor-card {
    min-width: 85%;
  }
  .testi-card {
    min-width: 88%;
  }
  .kids-grid {
    grid-template-columns: 1fr;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ti-grid {
    grid-template-columns: 1fr;
  }
  .form-btns {
    flex-direction: column;
  }
  .btn-send,
  .btn-wa {
    width: 100%;
  }
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-box {
  background: white;
  border-radius: 20px;
  padding: 48px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--off);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}

.modal-close:hover {
  background: var(--gray);
}

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

.modal-icon {
  font-size: 60px;
  color: #10b981;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
}

.modal-content p {
  font-size: 16px;
  color: var(--soft);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-content .btn {
  min-width: 180px;
}
