
/* =========================================================
   ABOUT TK MODERN UPGRADE
   Konsep: soft, playful, clean, tetap hijau-gold Azmia
========================================================= */

.tk-modern-page {
  --tk-green: #198754;
  --tk-green-dark: #0f5132;
  --tk-green-soft: #eaf8f0;
  --tk-gold: #c9a227;
  --tk-ink: #0f172a;
  --tk-muted: #64748b;
  --tk-soft: #f8fafc;
  overflow: hidden;
}

.tk-modern-page section {
  position: relative;
}

.tk-eyebrow,
.tk-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(25, 135, 84, 0.10);
  color: var(--tk-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tk-section-title {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--tk-ink);
  font-weight: 850;
  margin-bottom: 20px;
}

.tk-section-text,
.tk-section-head p {
  color: var(--tk-muted);
  font-size: 16px;
  line-height: 1.9;
}

.tk-section-head {
  max-width: 780px;
  margin: 0 auto 56px;
}

.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  transition: .35s ease;
}

.tk-btn-primary {
  background: linear-gradient(135deg, var(--tk-green), #20c997);
  color: #fff;
  box-shadow: 0 16px 35px rgba(25, 135, 84, .25);
}

.tk-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(25, 135, 84, .32);
}

.tk-btn-soft {
  background: #fff;
  color: var(--tk-ink);
  border: 1px solid rgba(15, 23, 42, .08);
}

.tk-btn-soft:hover {
  color: var(--tk-green);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
}

/* HERO */
.tk-hero-modern {
  padding: 130px 0 100px;
  background:
    radial-gradient(circle at 8% 16%, rgba(34, 197, 94, .14), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(201, 162, 39, .14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.tk-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}

.tk-hero-orb-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 80px;
  background: rgba(25, 135, 84, .10);
}

.tk-hero-orb-2 {
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: 80px;
  background: rgba(201, 162, 39, .12);
}

.tk-hero-title {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
  color: var(--tk-ink);
  margin-bottom: 24px;
}

.tk-hero-title span {
  display: block;
  color: var(--tk-green);
}

.tk-hero-desc {
  max-width: 620px;
  color: var(--tk-muted);
  font-size: 17px;
  line-height: 1.95;
  margin-bottom: 32px;
}

.tk-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tk-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tk-hero-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 35px rgba(15, 23, 42, .06);
  backdrop-filter: blur(16px);
}

.tk-hero-stats strong {
  display: block;
  color: var(--tk-ink);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 6px;
}

.tk-hero-stats span {
  color: var(--tk-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.tk-hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  overflow: visible;
}

.tk-hero-visual > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 44px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, .14);
}

.tk-hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px -20px -22px 28px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(25,135,84,.18), rgba(201,162,39,.18));
  z-index: -1;
}

.tk-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
  backdrop-filter: blur(18px);
}

.tk-floating-card i {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  font-size: 20px;
}

.tk-floating-card strong {
  display: block;
  color: var(--tk-ink);
  font-size: 14px;
}

.tk-floating-card span {
  color: var(--tk-muted);
  font-size: 12px;
}

.tk-float-top {
  top: 42px;
  left: -46px;
}

.tk-float-bottom {
  right: -35px;
  bottom: 46px;
}

/* WELCOME */
.tk-welcome-modern {
  padding: 110px 0;
  background: #fff;
}

.tk-photo-card {
  position: relative;
  border-radius: 38px;
}

.tk-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .10);
}

.tk-photo-badge {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 260px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(15,23,42,.12);
}

.tk-photo-badge span {
  display: block;
  color: var(--tk-green);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tk-photo-badge strong {
  color: var(--tk-ink);
  line-height: 1.35;
}

.tk-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.tk-value-card {
  padding: 24px 20px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 16px 38px rgba(15,23,42,.05);
  transition: .35s ease;
}

.tk-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(15,23,42,.08);
}

.tk-value-card i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  font-size: 24px;
  margin-bottom: 18px;
}

.tk-value-card h5 {
  color: var(--tk-ink);
  font-weight: 800;
  margin-bottom: 8px;
}

.tk-value-card p {
  color: var(--tk-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* PROGRAM */
.tk-program-modern {
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(25, 135, 84, .08), transparent 34%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.tk-program-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}

.tk-program-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
  backdrop-filter: blur(16px);
  transition: .4s ease;
}

.tk-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(15,23,42,.09);
}

.tk-program-featured {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15,81,50,.96), rgba(25,135,84,.92)),
    url('/assets/img/pattern-islamic.png');
  background-size: 300px;
  overflow: hidden;
}

.tk-program-featured span {
  display: inline-block;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tk-program-icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.tk-program-featured .tk-program-icon {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.tk-program-card h3,
.tk-program-card h4 {
  color: var(--tk-ink);
  font-weight: 850;
  margin-bottom: 14px;
}

.tk-program-featured h3 {
  color: #fff;
  font-size: 34px;
  line-height: 1.18;
}

.tk-program-card p {
  color: var(--tk-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.tk-program-featured p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
}

/* FLOW */
.tk-flow-modern {
  padding: 110px 0;
  background: #fff;
}

.tk-sticky-intro {
  position: sticky;
  top: 110px;
}

.tk-flow-list {
  display: grid;
  gap: 18px;
}

.tk-flow-item {
  display: flex;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
  transition: .35s ease;
}

.tk-flow-item:hover {
  transform: translateX(8px);
  border-color: rgba(25,135,84,.18);
}

.tk-flow-item span {
  min-width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--tk-gold), #f4d36b);
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.tk-flow-item h4 {
  color: var(--tk-ink);
  font-weight: 820;
  margin-bottom: 8px;
}

.tk-flow-item p {
  color: var(--tk-muted);
  line-height: 1.75;
  margin: 0;
}

/* FACILITY */
.tk-facility-modern {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc, #eef8f2);
}

.tk-big-facility {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 28px 75px rgba(15,23,42,.11);
}

.tk-big-facility img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: .8s ease;
}

.tk-big-facility:hover img {
  transform: scale(1.06);
}

.tk-big-facility::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.20), transparent);
}

.tk-big-facility > div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.tk-big-facility span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.tk-big-facility h3 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 850;
}

.tk-small-facility {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  min-height: 172px;
  border-radius: 30px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
  margin-bottom: 20px;
  transition: .35s ease;
}

.tk-small-facility:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(15,23,42,.09);
}

.tk-small-facility i {
  min-width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.tk-small-facility h4 {
  color: var(--tk-ink);
  font-weight: 850;
  margin-bottom: 8px;
}

.tk-small-facility p {
  color: var(--tk-muted);
  line-height: 1.75;
  margin: 0;
}

/* TESTIMONI */
.tk-testimoni-modern {
  padding: 110px 0;
  background: #fff;
}

.tk-testimoni-card {
  height: 100%;
  padding: 32px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
}

.tk-testimoni-card > i {
  font-size: 36px;
  color: var(--tk-gold);
}

.tk-testimoni-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
  margin: 18px 0 26px;
}

.tk-testimoni-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tk-testimoni-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.tk-testimoni-user h6 {
  margin: 0;
  color: var(--tk-ink);
  font-weight: 800;
}

.tk-testimoni-user small {
  color: var(--tk-muted);
}

.tk-empty-state {
  text-align: center;
  padding: 50px;
  border-radius: 30px;
  background: var(--tk-soft);
  color: var(--tk-muted);
}

.tk-empty-state i {
  display: block;
  font-size: 42px;
  color: var(--tk-green);
  margin-bottom: 10px;
}

/* CTA */
.tk-cta-modern {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.tk-cta-box {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 80px);
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(201,162,39,.18), transparent 34%),
    linear-gradient(135deg, #0f5132, #198754);
  box-shadow: 0 32px 80px rgba(25,135,84,.25);
  color: #fff;
}

.tk-cta-box span {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.tk-cta-box h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.tk-cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.84);
  line-height: 1.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .tk-float-top { left: 16px; }
  .tk-float-bottom { right: 16px; }
}

@media (max-width: 992px) {
  .tk-hero-modern,
  .tk-welcome-modern,
  .tk-program-modern,
  .tk-flow-modern,
  .tk-facility-modern,
  .tk-testimoni-modern {
    padding: 80px 0;
  }

  .tk-hero-visual,
  .tk-hero-visual > img {
    min-height: 420px;
    height: 420px;
  }

  .tk-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tk-program-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .tk-values-row {
    grid-template-columns: 1fr;
  }

  .tk-sticky-intro {
    position: static;
  }

  .tk-photo-card img,
  .tk-big-facility,
  .tk-big-facility img {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .tk-hero-modern {
    padding: 70px 0;
  }

  .tk-hero-title {
    letter-spacing: -1.5px;
  }

  .tk-hero-actions,
  .tk-hero-stats {
    flex-direction: column;
  }

  .tk-btn,
  .tk-hero-stats div {
    width: 100%;
  }

  .tk-floating-card {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .tk-hero-visual {
    min-height: auto;
  }

  .tk-hero-visual > img {
    height: 340px;
    border-radius: 30px;
  }

  .tk-hero-visual::before {
    display: none;
  }

  .tk-program-grid {
    grid-template-columns: 1fr;
  }

  .tk-program-featured {
    grid-column: span 1;
  }

  .tk-flow-item {
    flex-direction: column;
    gap: 16px;
  }

  .tk-flow-item:hover {
    transform: translateY(-6px);
  }

  .tk-photo-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  .tk-section-title {
    letter-spacing: -1px;
  }

  .tk-small-facility {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .tk-hero-modern,
  .tk-welcome-modern,
  .tk-program-modern,
  .tk-flow-modern,
  .tk-facility-modern,
  .tk-testimoni-modern {
    padding: 60px 0;
  }

  .tk-program-card,
  .tk-flow-item,
  .tk-small-facility,
  .tk-testimoni-card {
    padding: 24px;
    border-radius: 24px;
  }

  .tk-photo-card img,
  .tk-big-facility,
  .tk-big-facility img {
    height: 320px;
    min-height: 320px;
    border-radius: 28px;
  }

  .tk-big-facility > div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
}

/* =========================================================
   ABOUT TK MODERN UPGRADE
   Konsep: soft, playful, clean, tetap hijau-gold Azmia
========================================================= */

.tk-modern-page {
  --tk-green: #198754;
  --tk-green-dark: #0f5132;
  --tk-green-soft: #eaf8f0;
  --tk-gold: #c9a227;
  --tk-ink: #0f172a;
  --tk-muted: #64748b;
  --tk-soft: #f8fafc;
  overflow: hidden;
}

.tk-modern-page section {
  position: relative;
}

.tk-eyebrow,
.tk-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(25, 135, 84, 0.10);
  color: var(--tk-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tk-section-title {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--tk-ink);
  font-weight: 850;
  margin-bottom: 20px;
}

.tk-section-text,
.tk-section-head p {
  color: var(--tk-muted);
  font-size: 16px;
  line-height: 1.9;
}

.tk-section-head {
  max-width: 780px;
  margin: 0 auto 56px;
}

.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  transition: .35s ease;
}

.tk-btn-primary {
  background: linear-gradient(135deg, var(--tk-green), #20c997);
  color: #fff;
  box-shadow: 0 16px 35px rgba(25, 135, 84, .25);
}

.tk-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(25, 135, 84, .32);
}

.tk-btn-soft {
  background: #fff;
  color: var(--tk-ink);
  border: 1px solid rgba(15, 23, 42, .08);
}

.tk-btn-soft:hover {
  color: var(--tk-green);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
}

/* HERO */
.tk-hero-modern {
  padding: 130px 0 100px;
  background:
    radial-gradient(circle at 8% 16%, rgba(34, 197, 94, .14), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(201, 162, 39, .14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.tk-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}

.tk-hero-orb-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 80px;
  background: rgba(25, 135, 84, .10);
}

.tk-hero-orb-2 {
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: 80px;
  background: rgba(201, 162, 39, .12);
}

.tk-hero-title {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
  color: var(--tk-ink);
  margin-bottom: 24px;
}

.tk-hero-title span {
  display: block;
  color: var(--tk-green);
}

.tk-hero-desc {
  max-width: 620px;
  color: var(--tk-muted);
  font-size: 17px;
  line-height: 1.95;
  margin-bottom: 32px;
}

.tk-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tk-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tk-hero-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 16px 35px rgba(15, 23, 42, .06);
  backdrop-filter: blur(16px);
}

.tk-hero-stats strong {
  display: block;
  color: var(--tk-ink);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 6px;
}

.tk-hero-stats span {
  color: var(--tk-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.tk-hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  overflow: visible;
}

.tk-hero-visual > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 44px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, .14);
}

.tk-hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px -20px -22px 28px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(25,135,84,.18), rgba(201,162,39,.18));
  z-index: -1;
}

.tk-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
  backdrop-filter: blur(18px);
}

.tk-floating-card i {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  font-size: 20px;
}

.tk-floating-card strong {
  display: block;
  color: var(--tk-ink);
  font-size: 14px;
}

.tk-floating-card span {
  color: var(--tk-muted);
  font-size: 12px;
}

.tk-float-top {
  top: 42px;
  left: -46px;
}

.tk-float-bottom {
  right: -35px;
  bottom: 46px;
}

/* WELCOME */
.tk-welcome-modern {
  padding: 110px 0;
  background: #fff;
}

.tk-photo-card {
  position: relative;
  border-radius: 38px;
}

.tk-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .10);
}

.tk-photo-badge {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 260px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(15,23,42,.12);
}

.tk-photo-badge span {
  display: block;
  color: var(--tk-green);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tk-photo-badge strong {
  color: var(--tk-ink);
  line-height: 1.35;
}

.tk-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.tk-value-card {
  padding: 24px 20px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 16px 38px rgba(15,23,42,.05);
  transition: .35s ease;
}

.tk-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(15,23,42,.08);
}

.tk-value-card i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  font-size: 24px;
  margin-bottom: 18px;
}

.tk-value-card h5 {
  color: var(--tk-ink);
  font-weight: 800;
  margin-bottom: 8px;
}

.tk-value-card p {
  color: var(--tk-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* PROGRAM */
.tk-program-modern {
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(25, 135, 84, .08), transparent 34%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.tk-program-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}

.tk-program-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
  backdrop-filter: blur(16px);
  transition: .4s ease;
}

.tk-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(15,23,42,.09);
}

.tk-program-featured {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15,81,50,.96), rgba(25,135,84,.92)),
    url('/assets/img/pattern-islamic.png');
  background-size: 300px;
  overflow: hidden;
}

.tk-program-featured span {
  display: inline-block;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tk-program-icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.tk-program-featured .tk-program-icon {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.tk-program-card h3,
.tk-program-card h4 {
  color: var(--tk-ink);
  font-weight: 850;
  margin-bottom: 14px;
}

.tk-program-featured h3 {
  color: #fff;
  font-size: 34px;
  line-height: 1.18;
}

.tk-program-card p {
  color: var(--tk-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.tk-program-featured p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
}

/* FLOW */
.tk-flow-modern {
  padding: 110px 0;
  background: #fff;
}

.tk-sticky-intro {
  position: sticky;
  top: 110px;
}

.tk-flow-list {
  display: grid;
  gap: 18px;
}

.tk-flow-item {
  display: flex;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
  transition: .35s ease;
}

.tk-flow-item:hover {
  transform: translateX(8px);
  border-color: rgba(25,135,84,.18);
}

.tk-flow-item span {
  min-width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--tk-gold), #f4d36b);
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.tk-flow-item h4 {
  color: var(--tk-ink);
  font-weight: 820;
  margin-bottom: 8px;
}

.tk-flow-item p {
  color: var(--tk-muted);
  line-height: 1.75;
  margin: 0;
}

/* FACILITY */
.tk-facility-modern {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc, #eef8f2);
}

.tk-big-facility {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 28px 75px rgba(15,23,42,.11);
}

.tk-big-facility img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: .8s ease;
}

.tk-big-facility:hover img {
  transform: scale(1.06);
}

.tk-big-facility::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.20), transparent);
}

.tk-big-facility > div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.tk-big-facility span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.tk-big-facility h3 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 850;
}

.tk-small-facility {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  min-height: 172px;
  border-radius: 30px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
  margin-bottom: 20px;
  transition: .35s ease;
}

.tk-small-facility:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(15,23,42,.09);
}

.tk-small-facility i {
  min-width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--tk-green-soft);
  color: var(--tk-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.tk-small-facility h4 {
  color: var(--tk-ink);
  font-weight: 850;
  margin-bottom: 8px;
}

.tk-small-facility p {
  color: var(--tk-muted);
  line-height: 1.75;
  margin: 0;
}

/* TESTIMONI */
.tk-testimoni-modern {
  padding: 110px 0;
  background: #fff;
}

.tk-testimoni-card {
  height: 100%;
  padding: 32px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
}

.tk-testimoni-card > i {
  font-size: 36px;
  color: var(--tk-gold);
}

.tk-testimoni-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
  margin: 18px 0 26px;
}

.tk-testimoni-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tk-testimoni-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.tk-testimoni-user h6 {
  margin: 0;
  color: var(--tk-ink);
  font-weight: 800;
}

.tk-testimoni-user small {
  color: var(--tk-muted);
}

.tk-empty-state {
  text-align: center;
  padding: 50px;
  border-radius: 30px;
  background: var(--tk-soft);
  color: var(--tk-muted);
}

.tk-empty-state i {
  display: block;
  font-size: 42px;
  color: var(--tk-green);
  margin-bottom: 10px;
}

/* CTA */
.tk-cta-modern {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.tk-cta-box {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 80px);
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(201,162,39,.18), transparent 34%),
    linear-gradient(135deg, #0f5132, #198754);
  box-shadow: 0 32px 80px rgba(25,135,84,.25);
  color: #fff;
}

.tk-cta-box span {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.tk-cta-box h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.tk-cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.84);
  line-height: 1.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .tk-float-top { left: 16px; }
  .tk-float-bottom { right: 16px; }
}

@media (max-width: 992px) {
  .tk-hero-modern,
  .tk-welcome-modern,
  .tk-program-modern,
  .tk-flow-modern,
  .tk-facility-modern,
  .tk-testimoni-modern {
    padding: 80px 0;
  }

  .tk-hero-visual,
  .tk-hero-visual > img {
    min-height: 420px;
    height: 420px;
  }

  .tk-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tk-program-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .tk-values-row {
    grid-template-columns: 1fr;
  }

  .tk-sticky-intro {
    position: static;
  }

  .tk-photo-card img,
  .tk-big-facility,
  .tk-big-facility img {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .tk-hero-modern {
    padding: 70px 0;
  }

  .tk-hero-title {
    letter-spacing: -1.5px;
  }

  .tk-hero-actions,
  .tk-hero-stats {
    flex-direction: column;
  }

  .tk-btn,
  .tk-hero-stats div {
    width: 100%;
  }

  .tk-floating-card {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .tk-hero-visual {
    min-height: auto;
  }

  .tk-hero-visual > img {
    height: 340px;
    border-radius: 30px;
  }

  .tk-hero-visual::before {
    display: none;
  }

  .tk-program-grid {
    grid-template-columns: 1fr;
  }

  .tk-program-featured {
    grid-column: span 1;
  }

  .tk-flow-item {
    flex-direction: column;
    gap: 16px;
  }

  .tk-flow-item:hover {
    transform: translateY(-6px);
  }

  .tk-photo-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  .tk-section-title {
    letter-spacing: -1px;
  }

  .tk-small-facility {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .tk-hero-modern,
  .tk-welcome-modern,
  .tk-program-modern,
  .tk-flow-modern,
  .tk-facility-modern,
  .tk-testimoni-modern {
    padding: 60px 0;
  }

  .tk-program-card,
  .tk-flow-item,
  .tk-small-facility,
  .tk-testimoni-card {
    padding: 24px;
    border-radius: 24px;
  }

  .tk-photo-card img,
  .tk-big-facility,
  .tk-big-facility img {
    height: 320px;
    min-height: 320px;
    border-radius: 28px;
  }

  .tk-big-facility > div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
}


/* =========================================================
   TK PRINCIPAL / KATA SAMBUTAN UPGRADE
   Soft colorful: pink, blue, star background, tetap clean
========================================================= */
.tk-modern-page {
  --tk-pink: #f9a8d4;
  --tk-pink-soft: #fff1f7;
  --tk-blue: #93c5fd;
  --tk-blue-soft: #eff6ff;
  --tk-yellow-soft: #fff7d6;
}

.tk-principal-modern {
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(249, 168, 212, .30), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(147, 197, 253, .35), transparent 28%),
    radial-gradient(circle at 78% 86%, rgba(250, 204, 21, .18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.tk-principal-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    radial-gradient(circle, rgba(249,168,212,.70) 0 2px, transparent 2.8px),
    radial-gradient(circle, rgba(147,197,253,.70) 0 2px, transparent 2.8px),
    radial-gradient(circle, rgba(201,162,39,.45) 0 1.5px, transparent 2.5px);
  background-size: 120px 120px, 160px 160px, 95px 95px;
  background-position: 0 0, 60px 30px, 25px 70px;
  pointer-events: none;
}

.tk-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.tk-star-one {
  top: 80px;
  left: 8%;
  color: #f9a8d4;
  font-size: 48px;
  transform: rotate(-14deg);
  opacity: .75;
}

.tk-star-two {
  right: 10%;
  bottom: 110px;
  color: #93c5fd;
  font-size: 56px;
  transform: rotate(12deg);
  opacity: .8;
}

.tk-cloud-one,
.tk-cloud-two {
  width: 130px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 38px 2px 0 rgba(255,255,255,.72), 18px -22px 0 rgba(255,255,255,.72);
  filter: blur(.1px);
}

.tk-cloud-one {
  top: 110px;
  right: 18%;
  opacity: .85;
}

.tk-cloud-two {
  left: 6%;
  bottom: 80px;
  transform: scale(.8);
  opacity: .70;
}

.tk-principal-modern .container {
  position: relative;
  z-index: 2;
}

.tk-colorful-tag {
  background: linear-gradient(135deg, rgba(249,168,212,.18), rgba(147,197,253,.18));
  color: #0f5132;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 12px 30px rgba(147,197,253,.18);
}

.tk-principal-photo-wrap {
  position: relative;
  min-height: 560px;
}

.tk-principal-photo-bg {
  position: absolute;
  inset: 40px 30px 20px 0;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(249,168,212,.45), rgba(147,197,253,.45)),
    #fff;
  transform: rotate(-4deg);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

.tk-principal-photo-card {
  position: relative;
  height: 500px;
  border-radius: 46px;
  overflow: hidden;
  background: #fff;
  border: 10px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .14);
}

.tk-principal-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.tk-principal-photo-wrap:hover .tk-principal-photo-card img {
  transform: scale(1.04);
}

.tk-principal-name-card {
  position: absolute;
  right: -18px;
  bottom: 20px;
  width: min(310px, 82%);
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 22px 55px rgba(15,23,42,.10);
}

.tk-principal-name-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--tk-pink-soft);
  color: #be185d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.tk-principal-name-card h4 {
  margin: 0 0 4px;
  color: var(--tk-ink);
  font-size: 22px;
  font-weight: 850;
}

.tk-principal-name-card p {
  margin: 0;
  color: var(--tk-green);
  font-size: 14px;
  font-weight: 650;
}

.tk-principal-content {
  padding-left: 24px;
}

.tk-principal-quote {
  position: relative;
  padding: 28px 30px 28px 34px;
  margin: 26px 0;
  border-radius: 32px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 20px 60px rgba(15,23,42,.06);
}

.tk-principal-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--tk-pink), var(--tk-blue));
}

.tk-principal-quote i {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 46px;
  color: rgba(249,168,212,.35);
}

.tk-principal-quote p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 550;
}

.tk-principal-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.tk-principal-points div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 35px rgba(15,23,42,.05);
  transition: .35s ease;
}

.tk-principal-points div:nth-child(1) i { background: var(--tk-pink-soft); color: #db2777; }
.tk-principal-points div:nth-child(2) i { background: var(--tk-blue-soft); color: #2563eb; }
.tk-principal-points div:nth-child(3) i { background: var(--tk-yellow-soft); color: #b45309; }

.tk-principal-points div:hover {
  transform: translateY(-6px);
}

.tk-principal-points i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 12px;
  font-size: 20px;
}

.tk-principal-points span {
  display: block;
  color: var(--tk-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.tk-signature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(25,135,84,.08), rgba(147,197,253,.13));
  border: 1px solid rgba(25,135,84,.08);
}

.tk-signature-box strong,
.tk-signature-box span {
  display: block;
}

.tk-signature-box strong {
  color: var(--tk-ink);
  font-size: 16px;
}

.tk-signature-box span,
.tk-signature-box small {
  color: var(--tk-muted);
  line-height: 1.6;
}

.tk-signature-box small {
  text-align: right;
  max-width: 320px;
}

@media (max-width: 992px) {
  .tk-principal-modern {
    padding: 80px 0;
  }

  .tk-principal-content {
    padding-left: 0;
  }

  .tk-principal-photo-wrap {
    min-height: auto;
  }

  .tk-principal-photo-card {
    height: 430px;
  }

  .tk-principal-name-card {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .tk-star-one,
  .tk-star-two,
  .tk-cloud-one,
  .tk-cloud-two {
    opacity: .35;
  }

  .tk-principal-points {
    grid-template-columns: 1fr;
  }

  .tk-signature-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .tk-signature-box small {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .tk-principal-modern {
    padding: 60px 0;
  }

  .tk-principal-photo-card {
    height: 330px;
    border-radius: 30px;
  }

  .tk-principal-photo-bg {
    border-radius: 30px;
  }

  .tk-principal-name-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .tk-principal-quote {
    padding: 24px;
    border-radius: 24px;
  }

  .tk-principal-quote p {
    font-size: 15px;
  }
}
.teacher-modern-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
    transition: all .35s ease;
    height: 100%;
}

.teacher-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(15,23,42,.14);
}

/* FRAME FOTO */
.teacher-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(25,135,84,.08),
            rgba(32,201,151,.08)
        );
    padding: 12px;
}

/* FOTO */
.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    transition: transform .6s ease;
}

/* HOVER FOTO */
.teacher-modern-card:hover .teacher-photo img {
    transform: scale(1.05);
}

/* BADGE JENJANG */
.teacher-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 28px;
}

/* BODY */
.teacher-body {
    padding: 24px;
}

.teacher-body span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(25,135,84,.08);
    color: #198754;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.teacher-body h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #0f172a;
}

.teacher-body p {
    color: #198754;
    font-weight: 600;
    margin-bottom: 12px;
}

.teacher-body small {
    display: block;
    color: #64748b;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width:768px) {

    .teacher-modern-card {
        border-radius: 22px;
    }

    .teacher-photo {
        padding: 10px;
    }

    .teacher-photo img {
        border-radius: 14px;
    }

    .teacher-body {
        padding: 18px;
    }
}

.section-bg-word {
    position: absolute;
    font-size: clamp(80px,18vw,260px);
    font-weight: 1000;
    letter-spacing: -12px;
    line-height: 1;
    white-space: nowrap;
    color: rgba(15,23,42,.024);
    pointer-events: none;
    user-select: none;
    z-index: -1;
}
.tk-organization-section{
    padding:120px 0;
    background:#fff;
}

.tk-org-card{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    cursor:zoom-in;
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}

.tk-org-card img{
    width:100%;
    display:block;
}

.tk-org-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:10px;
    opacity:0;
    transition:.3s ease;
}

.tk-org-overlay i{
    font-size:42px;
}

.tk-org-card:hover .tk-org-overlay{
    opacity:1;
}

.tk-org-overlay span{
    font-weight:700;
}
/* ==================================================
   VISI MISI PAUD
================================================== */

.tk-vm-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 140px) 0;
    background:
        radial-gradient(circle at top left,
            rgba(255, 182, 193, .18),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(96, 165, 250, .15),
            transparent 35%),

        linear-gradient(180deg,
            #fff,
            #f8fafc);
}

.tk-vm-bg-word {
    position: absolute;
    right: -3%;
    top: 4%;
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 1000;
    line-height: 1;
    color: rgba(15, 23, 42, .025);
    user-select: none;
    pointer-events: none;
}

.tk-vm-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.tk-vm-left {
    position: sticky;
    top: 120px;
}

.tk-vm-left h2 {
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 24px;
}

.tk-vm-left h2 span {
    display: block;
    color: #f97316;
}

.tk-vm-left p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    max-width: 500px;
}

.tk-vm-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tk-mission-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, .06);
    transition: .35s ease;
}

.tk-mission-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(15, 23, 42, .12);
}

.tk-mission-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #fb7185,
            #f97316);

    color: #fff;
    font-weight: 900;
    font-size: 15px;

    margin-bottom: 18px;
}

.tk-mission-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.tk-mission-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Mobile */

@media (max-width: 991px) {

    .tk-vm-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tk-vm-left {
        position: relative;
        top: auto;
    }

    .tk-vm-right {
        grid-template-columns: 1fr;
    }

    .tk-vm-bg-word {
        display: none;
    }

}

@media (max-width: 576px) {

    .tk-vm-section {
        padding: 80px 0;
    }

    .tk-mission-card {
        padding: 24px;
        border-radius: 24px;
    }

    .tk-mission-card h4 {
        font-size: 20px;
    }

}