/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  background-color: rgba(234, 255, 255, 0.164);
}

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap");

/* Default font */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
}

:root {
  /* Mengambil skema warna dari desain modern di gambar terakhir */
  --text-color: #595959;
  --selected-text-color: #333;
  --selected-link-bg: #e5f1ff; /* Latar belakang link aktif/hover (biru muda) */
  --cta-gradient-start: #6187f5; /* Biru Awal Gradien CTA */
  --cta-gradient-end: #9e75f4; /* Ungu Akhir Gradien CTA */
  --text-dark: #333;
  --text-light: #595959;
  --cta-gradient-start: #6187f5;
  --cta-gradient-end: #9e75f4;
  --blue-highlight: #6187f5;
}
/* Navbar Styles */
/* ================= WARNA DAN VARIABEL GLOBAL ================= */

/* ================= NAVBAR DESKTOP ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Padding besar untuk replikasi jarak di desktop */
  padding: 10px 140px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1100;
  /* Shadow tipis agar sesuai gambar */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Logo kiri */
.navbar-logo img {
  width: 120px;
  height: auto;
}

/* Menu tengah */
.nav-links {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 0;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 8px 14px; /* Padding untuk link */
  border-radius: 8px;
}

/* Link yang sedang dipilih (Home) */
.nav-links .selected-page {
  color: var(--selected-text-color);
  background-color: var(--selected-link-bg);
  font-weight: 600;
}

/* Efek Hover: Sama dengan tampilan selected-page */
.nav-links a:not(.selected-page):hover {
  color: var(--selected-text-color);
  background-color: var(--selected-link-bg);
}

/* Tombol kanan (CTA) */
.navbar-cta {
  display: flex;
  align-items: center;
}

.btn-cta {
  padding: 10px 22px;
  /* Gradien modern */
  background: linear-gradient(
    135deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-end) 100%
  );
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(97, 135, 245, 0.2);
}

.btn-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Kelas utility */
.mobile-only {
  display: none;
}
.desktop-only {
  /* Tidak perlu disetel di sini karena ini adalah default desktop */
}

/* ================= Hamburger ================= */
.hamburger {
  display: none; /* Sembunyikan di desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1200;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animasi jadi X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= Overlay ================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= MOBILE MENU (max-width: 768px) ================= */
@media (max-width: 768px) {
  /* Header/Navbar */
  .navbar {
    padding: 12px 20px;
  }

  /* Logo */
  .navbar-logo img {
    width: 120px;
  }

  /* Sembunyikan menu desktop dan tombol CTA */
  .nav-links,
  .navbar-cta {
    /* Kami akan menampilkan nav-links lagi saat hamburger diklik */
    display: none;
  }

  /* Tombol CTA versi desktop */
  .desktop-only {
    display: none;
  }

  /* Hamburger tampil */
  .hamburger {
    display: flex;
  }

  /* Menu geser jadi sidebar dropdown */
  .nav-links {
    position: fixed;
    top: 65px; /* Sesuaikan dengan tinggi navbar mobile */
    right: 20px;
    left: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex; /* Override display: none; */
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1200;
  }

  /* Menu aktif */
  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Link menu mobile */
  .nav-links a {
    font-size: 16px;
    width: 100%;
    padding: 10px 14px;
    /* Nonaktifkan efek hover link desktop di mobile */
    background: transparent !important;
  }

  /* Tombol CTA mobile */
  .mobile-only {
    display: block; /* Tampilkan tombol mobile */
    margin-top: 20px;
    width: 100%;
    /* Mengambil semua styling dari .btn-cta global */
  }

  /* Animasi muncul link satu per satu */
  .nav-links a {
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Animasi delay */
  .nav-links.active a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active a:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active a:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active a:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active a:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links.active a:nth-child(6) {
    transition-delay: 0.6s;
  } /* Tambahan */
  .nav-links.active a:nth-child(7) {
    transition-delay: 0.7s;
  } /* Tambahan (untuk tombol CTA mobile) */
}

/* ========== HERO START ========== */
.hero {
  /* Hapus padding vertikal lama, tambahkan padding untuk konten */
  padding: 130px 20px 80px;
  min-height: 80vh;
  position: relative;
  overflow: hidden;

  /* Background Image (Ganti 'path/to/your/image.jpg' dengan gambar hero Anda) */
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
    /* Overlay gelap */ url("img/hero-start.png") no-repeat center center/cover;
  /* Jika Anda ingin efek blur di background, tambahkan div overlay dengan backdrop-filter */

  /* Warna teks utama harus terang agar terbaca di background gelap */
  color: #fff;
  text-align: center;
}

.hero-container {
  /* Konten terpusat di tengah layar */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Badge Rating di atas judul */
.rating-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px); /* Efek kaca buram (optional) */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-badge .star {
  color: #ffc107;
  margin-right: 5px;
}

/* Konten Utama */
.hero-content {
  max-width: 750px;
  margin-bottom: 60px;
}

.hero-content h1 {
  /* Judul utama lebih besar dan tebal */
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 .highlight-blue {
  /* Efek gradien/warna pada kata Communication */
  background: linear-gradient(90deg, #6187f5, #9e75f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-content p {
  font-size: 20px;
  color: rgba(
    255,
    255,
    255,
    0.85
  ); /* Teks putih transparan di background gelap */
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Tombol */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Tombol 1: Join a Class (Primary CTA) */
.btn-primary-cta {
  padding: 14px 30px;
  background: linear-gradient(
    135deg,
    var(--cta-gradient-start) 0%,
    var(--cta-gradient-end) 100%
  );
  color: #fff !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(97, 135, 245, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(97, 135, 245, 0.6);
}

/* Tombol 2: Explore Programs (Secondary Outline) */
.btn-secondary-outline {
  padding: 14px 30px;
  background: #fff; /* Latar belakang putih */
  color: var(--blue-highlight) !important; /* Teks biru */
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary-outline:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* Statistik Baru (Di bawah tombol) */
.hero-stats-new {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.hero-stats-new .stat {
  text-align: center;
}

.hero-stats-new .stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff; /* Angka putih */
  margin-bottom: 5px;
}

.hero-stats-new .stat p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7); /* Teks deskripsi */
  margin-bottom: 0;
}

.hero-stats-new .stat .stars {
  color: #ffc107;
  font-size: 14px;
  margin-top: 5px;
}

/* ================= MEDIA QUERY (RESPONSIVE) ================= */
@media (max-width: 992px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: unset;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-stats-new {
    gap: 40px;
  }

  .hero-stats-new .stat h3 {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-cta,
  .btn-secondary-outline {
    width: 60%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-stats-new {
    flex-wrap: wrap;
    gap: 30px;
  }

  .btn-primary-cta,
  .btn-secondary-outline {
    width: 100%;
    max-width: 300px;
  }
}
/* ========== HERO END ========== */

/* ========== WHY CHOOSE START ========== */
.why-choose {
  padding: 80px 20px;
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Judul */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.why-header h2 span {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-header p {
  font-size: 16px;
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card Wrapper */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Icon */
.why-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #60a5fa 20%,
    rgba(255, 255, 255, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card .icon img {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}

.why-card .icon .icon-white {
  color: #fff;
}

/* Title */
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* Description */
.why-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
  }

  .why-header p {
    font-size: 13px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .why-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111827;
  }

  .why-header p {
    font-size: 13px;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }
}
/* ========== WHY CHOOSE END ========== */

/* ========== PROGRAM START ============ */
.program {
  padding: 80px 20px;
}

.program-header {
  text-align: center;
  margin-bottom: 50px;
}

.program-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.program-header h2 span {
  color: #3b82f6;
}

.program-header p {
  font-size: 16px;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

/* Card Grid */
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.program-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.program-card-corporate {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.program-card-corporate:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.program-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.program-card-corporate .icon-corporate {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* .program-card re.icon img {
  width: 26px;
  height: auto;
  filter: brightness(0) invert(1);
} */

.program-card .icon .icon-white {
  color: #fff;
}

.program-card-corporate .icon-corporate .icon-white {
  color: #fff;
}

.program-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.program-card p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
  line-height: 1.6;
}

.program-card-corporate h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.program-card-corporate p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
  line-height: 1.6;
}

.btn-learn {
  display: inline-block;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #111;
  background: #fff;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.btn-learn:hover {
  background: #f9fafb;
}

.btn-learn-corporate {
  display: inline-block;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #111;
  background: #fff;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.btn-learn-corporate:hover {
  background: #f9fafb;
}

/* Background shape */
.bg-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
}

.bg-shape-corporate {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
}

/* Warna tiap card */
.program-card.blue .icon {
  background: #3b82f6;
}
.program-card.purple .icon {
  background: #8b5cf6;
}
.program-card.green .icon {
  background: #10b981;
}
.program-card.orange .icon {
  background: #f97316;
}
.program-card-corporate.red .icon-corporate {
  background: #ef4444;
}
.program-card.teal .icon {
  background: #14b8a6;
}

.program-card.blue .bg-shape {
  background: #3b82f6;
}
.program-card.purple .bg-shape {
  background: #8b5cf6;
}
.program-card.green .bg-shape {
  background: #10b981;
}
.program-card.orange .bg-shape {
  background: #f97316;
}
.program-card-corporate.red .bg-shape-corporate {
  background: #ef4444;
}
.program-card.teal .bg-shape {
  background: #14b8a6;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
  /* position: relative; */
  /* z-index: 1; */
  /* width: 100%; */
}

.slides img {
  width: 100%;
  border-radius: 12px;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 1;
}

/* Tombol navigasi */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  border: none;
  pointer-events: auto;
  z-index: 100;
  margin: 1rem;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .program-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111827;
  }

  .program-header p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .program-cards {
    grid-template-columns: 1fr;
  }
}
/* ========== PROGRAM END ============ */

/* ================= CATEGORY START ================= */
.category-section {
  padding: 80px 20px;
}

.category-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.category-container h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.category-title span {
  color: #3b82f6;
}

.category-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: left;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Shape pojok kanan atas */
.bg-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.15;
}

/* Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon .icon-white {
  color: #fff;
}

.category-label {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Judul & Deskripsi */
.category-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.category-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* List */
.category-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.category-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #0f172a;
}

.category-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Tombol Join */
.category-btn-join {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 30%, #ffffff 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-btn-join:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

/* ================= Warna Icon, Shape & Label ================= */

/* Kids = Biru */
.category-card.blue .category-icon {
  background: #3b82f6;
}
.category-card.blue .bg-shape {
  background: #3b82f6;
}
.category-card.blue .category-label {
  color: #3b82f6;
  background: #e0f2fe;
}

/* Teens = Ungu */
.category-card.purple .category-icon {
  background: #8b5cf6;
}
.category-card.purple .bg-shape {
  background: #8b5cf6;
}
.category-card.purple .category-label {
  color: #8b5cf6;
  background: #ede9fe;
}

/* Young Adult = Oranye */
.category-card.orange .category-icon {
  background: #f97316;
}
.category-card.orange .bg-shape {
  background: #f97316;
}
.category-card.orange .category-label {
  color: #f97316;
  background: #fff7ed;
}

/* Advanced = Merah */
.category-card.red .category-icon {
  background: #ef4444;
}
.category-card.red .bg-shape {
  background: #ef4444;
}
.category-card.red .category-label {
  color: #ef4444;
  background: #fee2e2;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-container h2 {
    font-size: 2.2rem;
    font-weight: 800;
  }

  .category-container p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= Category Section End ================= */
/* ================= Mentor Section ================= */
.mentor-section {
  padding: 60px 20px;
  background: #f5f7fa;
  font-family: "Poppins", sans-serif;
}

/* Header */
.mentor-header {
  text-align: center;
  margin-bottom: 40px;
}

.mentor-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.mentor-header h2 .highlight {
  color: #2563eb; /* biru */
}

.mentor-header p {
  color: #666;
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

/* ===== Carousel Container ===== */
.mentor-carousel {
  position: relative;
  width: 1000px;
  height: auto;
  margin: auto;
}

.mentor-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 420px;
  overflow: hidden;
}

/* ===== Mentor Card ===== */
.mentor-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center; /* kanan jadi rata tengah */
  gap: 40px;
  padding: 40px;

  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 0;
}

.mentor-card.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

/* Animasi */
.mentor-card.slide-in-right {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}
.mentor-card.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}
.mentor-card.slide-in-left {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}
.mentor-card.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}

/* ===== Left Side ===== */
.mentor-left {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.mentor-photo {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 2px 15px;
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mentor-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  /* background: #dde1ea65; */
  color: #fff;
  border-radius: 50%;
  padding: 2px;
}

.mentor-left h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.mentor-left p {
  font-size: 0.7rem;
  /* text-align: left; */
}

.mentor-title {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 500;
  line-height: 1.4;
}

.mentor-rating {
  margin-top: 8px;
  font-size: 1rem;
  color: #fbbf24;
}

/* ===== Right Side ===== */
.mentor-right {
  flex: 2;
  text-align: left;
}

.mentor-right h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.skills span {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 6px 14px;
  margin: 4px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.mentor-quote {
  margin-top: 18px;
  padding: 14px 18px;
  font-style: italic;
  color: #3e3e3e;
  background: #f0f6ff;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.5;
}

/* ===== Navigation Buttons ===== */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #111;
  border: none;
  font-size: 22px;
  padding: 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #2563eb;
  color: #fff;
}

.prev-mentor {
  left: -25px;
}
.next-mentor {
  right: -25px;
}

/* ===== Indicators ===== */
.carousel-indicators {
  text-align: center;
  margin-top: 20px;
}

.carousel-indicators .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-indicators .dot.active {
  background-color: #2563eb;
  transform: scale(1.2);
}

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .mentor-carousel {
    width: 90%;
  }

  .mentor-wrapper {
    height: auto;
    min-height: 550px;
  }

  .mentor-card {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    text-align: center;
  }

  .mentor-left,
  .mentor-right {
    flex: unset;
    width: 100%;
  }

  .mentor-right {
    text-align: center;
  }

  .skills span {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .mentor-header h2 {
    font-size: 2.2rem;
  }

  .mentor-header p {
    font-size: 16px;
    padding: 0 10px;
  }

  .mentor-card {
    padding: 20px;
    gap: 15px;
  }

  .mentor-photo {
    width: 160px;
    height: 160px;
  }

  .mentor-left h3 {
    font-size: 1.1rem;
  }

  .mentor-title {
    font-size: 0.8rem;
  }

  .mentor-quote {
    font-size: 0.75rem;
    padding: 10px 12px;
  }

  .nav-btn {
    font-size: 18px;
    padding: 10px;
  }
}

/* ======= TESTIMONIAL START =========== */
.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background-position: 50 100%;
  color: #1f2937;
}

/* ===== HEADER ===== */
.testimonial-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.testimonial-header h2 span {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-header p {
  font-size: 1rem;
  color: #4b5563;
}

.testimonial-header .hashtag {
  color: #2563eb;
  font-weight: 600;
}

/* ===== CARD WRAPPER ===== */
.testimonial-cards {
  margin: 40px auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== CARD ===== */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 20px;
  width: 320px;
  position: relative;
  text-align: left;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
}

.stars {
  color: #fbbf24; /* kuning emas */
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #374151;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.5;
}

/* Garis pemisah */
.divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 15px 0;
}

/* FOOTER DALAM CARD */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.student-info span {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Tag di bawah */
.tag {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.8rem;
  background: #e0f2fe;
  color: #0369a1;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== STATS ===== */
.stats-container {
  display: flex;
  justify-content: center;
}

.testimonial-stats {
  margin-top: 60px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 10px;
  border-radius: 12px;
  width: 65rem;
  background-position: 0 40%;
  background: linear-gradient(135deg, #4f8ef7 0%, #a3a8a4 50%, #ffe5aa8b 100%);
  /* color: #fff; */
}

.stat h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.stat p {
  font-size: 1rem;
  color: #fff;
  margin-top: 5px;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .testimonial-section {
    width: 100%;
    padding: 50px 20px;
  }

  .testimonial-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
  }

  .testimonial-header p {
    font-size: 16px;
    padding: 0 20px;
  }

  .testimonial-cards {
    gap: 15px;
  }

  .testimonial-card {
    width: 280px;
  }

  .testimonial-stats {
    width: 95%;
    gap: 20px;
    padding: 20px;
  }

  .stat h3 {
    font-size: 1.3rem;
  }

  .stat p {
    font-size: 0.9rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .testimonial-section {
    width: 100%;
    padding: 40px 15px;
  }

  .testimonial-header h2 {
    font-size: 2.2rem;
    font-weight: 16px;
  }

  .testimonial-header p {
    font-size: 16px;
    margin: 0 auto;
    max-width: 90%;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 320px;
  }

  .testimonial-stats {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 15px;
  }

  .stat h3 {
    font-size: 1.2rem;
  }

  .stat p {
    font-size: 0.7rem;
  }
}

/* ======= TESTIMONIAL END =========== */

/* ====== FAQ START =========== */
.faq-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  color: #111827;
  text-align: center; /* bikin konten rata tengah */
}

/* Header */
.faq-header .faq-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  background: #f3f4f6;
  color: #3b82f6;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.faq-header h2 span {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-header p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 45px;
}

/* Contact Box */
.faq-contact {
  background: #fff;
  border: 1px solid #e5ebf7;
  padding: 40px 25px;
  border-radius: 16px;
  margin: 0 auto 50px;
  max-width: 700px;
  text-align: center;
  color: #65686d;
  font-size: 16px;
  line-height: 2;
}

.faq-contact .faq-contact-content .faq-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.faq-contact .faq-contact-content .contact-image {
  width: 20px;
  height: auto;
}

.faq-contact a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.faq-contact strong {
  color: #111827;
}

.faq-contact-operational {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  /* color: red; */
}

/* FAQ Items */
.faq-list {
  margin-top: 30px;
  text-align: center;
}

.faq-item {
  border: 1px solid #e5ebf7;
  border-radius: 16px;
  margin: 0 auto 20px;
  background: #fff;
  max-width: 750px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 22px rgba(74, 108, 247, 0.12);
  border-color: #1e6ed7;
  /* color: red; */
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2563eb;
}

/* Gradient saat aktif */
.faq-item.active .faq-question {
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  color: #fff;
  border-radius: 16px 16px 0 0;
}

/* Arrow Icon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 26px;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
  color: #fff;
  content: "-";
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  background: #f9fbff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 18px 26px 24px;
}

.faq-answer p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
  }

  .faq-header p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .faq-contact {
    padding: 30px 20px;
  }

  .faq-question {
    font-size: 22px;
    padding: 20px 22px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 12px;
  }

  .faq-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
  }

  .faq-header p {
    font-size: 16px;
    /* line-height: 1.6; */
  }

  .faq-contact {
    padding: 25px 18px;
    font-size: 15px;
  }

  .faq-contact .faq-title p {
    font-size: 15px;
  }

  .faq-question {
    font-size: 16px;
    padding: 16px 20px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ====== FAQ END =========== */

/* ========= CTA START ========= */
.cta-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f8ef7 0%, #a3a8a4 50%, #f5b932 100%);
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.cta-container {
  max-width: 850px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.cta-container h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f1f5f9;
}

.cta-container p span {
  color: #fff;
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  padding: 20px 33px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #f9c23c, #f8b400);
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #f8b400, #f9c23c);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 26px;
  border-radius: 12px;
}

.cta-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.cta-info p {
  font-size: 14px;
  margin: 0;
  color: #f8f9fa;
}

.cta-info a {
  font-size: 14px;
  margin: 0;
  color: #f8f9fa;
  text-decoration-line: none;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  .cta-container h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .cta-container p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }

  .btn {
    padding: 16px 28px;
    font-size: 14px;
  }

  /* .cta-info {
    gap: 20px;
    padding: 14px 18px;
  } */

  .cta-info h4 {
    font-size: 15px;
  }

  .cta-info p {
    font-size: 13px;
  }

  .cta-badges {
    flex-wrap: nowrap;
    gap: 15px;
    font-size: 13px;
  }

  .cta-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Atur urutan */
  .cta-info div:nth-child(1) {
    order: 1;
  } /* WhatsApp */
  .cta-info div:nth-child(2) {
    order: 2;
  } /* Instagram */
  .cta-info div:nth-child(3) {
    order: 3;
  } /* Jam Operasional */
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    height: auto;
    padding: 60px 15px;
  }

  .cta-container h1 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .cta-container p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 14px 22px;
    font-size: 14px;
  }

  .cta-info {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin-bottom: 25px;
  }

  .cta-info h4 {
    font-size: 14px;
  }

  .cta-info p {
    font-size: 13px;
  }

  .cta-badges {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
}

/* ========= CTA END ========= */

/* ======= FOOTER START ========= */
footer {
  background: linear-gradient(135deg, #f9fbff 0%, #edf2fb 50%, #f1f5ff 100%);
  color: #111827;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kolom */
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h2.footer-brand {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e3a8a;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #374151;
}

.footer-col ul li a {
  text-decoration: none;
  color: #374151;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #2563eb;
}

/* Ikon Sosial */
.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 20px;
  color: #374151;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Ikon dalam kontak */
.footer-col ul li i {
  margin-right: 8px;
  color: #2563eb;
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e5ebf7;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #2563eb;
}

/* Responsive Tablet */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 45%;
  }
}

/* Responsive Mobile */
@media (max-width: 600px) {
  footer {
    padding: 40px 16px 20px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
/* ======= FOOTER END ========= */
