* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== SMOOTH SCROLL ========== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Offset untuk navbar fixed (tinggi navbar + jarak) */
}

body {
  background: white;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  min-height: 100vh;
  padding-top: 150px; /* kasih ruang buat navbar ngambang */
  padding-bottom: 60px;
}

/* ========== NAVBAR NGAMBANG ========== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 32px;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(30, 58, 95, 0.1);
}

/* ============================================= */
/* LOGO GAMBAR - RESPONSIF */
/* ============================================= */

/* Desktop (default) */
.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.logo-img {
  height: 40px; /* atur tinggi logo */
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Hover effect logo */
.logo-img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* ============================================= */
/* TABLET (768px - 1024px) */
/* ============================================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .logo-img {
    height: 45px; /* sedikit lebih kecil di tablet */
  }
}

/* ============================================= */
/* MOBILE (max-width: 768px) */
/* ============================================= */
@media screen and (max-width: 768px) {
  .logo-img {
    height: 38px; /* lebih kecil di mobile */
  }
}

/* ============================================= */
/* HP KECIL (max-width: 480px) */
/* ============================================= */
@media screen and (max-width: 480px) {
  .logo-img {
    height: 32px;
  }
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2c4c6e;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #67b4eb;
}

/* ============================================= */
/* LOGO + TEXT CONTAINER - TAMBAHAN BARU */
/* ============================================= */

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Container Text di samping kanan logo */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Baris pertama - Kampung Inggris Malang (warna hitam) */
.kampung-inggris {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
}

/* Baris kedua - LEARNING 7 */
.learning {
  font-size: 14px;
  font-weight: 600;
  color: #67b4eb;
  letter-spacing: 1px;
}

/* Responsive - Mobile */
@media screen and (max-width: 768px) {
  .logo-container {
    gap: 10px;
  }
  
  .kampung-inggris {
    font-size: 10px;
  }
  
  .learning {
    font-size: 8px;
  }
}

/* ========== MAIN CONTENT 2 KOLOM ========== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.logo .tagline {
  font-size: 1rem;
  color: #000000;
  margin: 0;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.left {
  flex: 1;
  min-width: 280px;
}

.badge {
  background: #e8f0fe;
  color: #1e4a76;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0a2b44;
  line-height: 1.2;
  margin-bottom: 24px;
}

.left p {
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 32px;
}

.left p strong {
  color: #67b4eb;
}

/* Tombol DAFTAR (biru tema, tapi tombol tetap oranye kontras biar menonjol) */
.btn-daftar {
  background: #f39c12;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  margin-bottom: 20px;
}

.btn-daftar:hover {
  background: #f39c12;
  transform: translateY(-2px);
}

.right {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  max-width: 450px;
}

/* ========== STATISTIK DI TENGAH, PAKAI KOLOM, WARNA BIRU ========== */
.stats-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding: 0 40px;
}

.stats-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background: white;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  background: #f0f6ff;
  padding: 28px 16px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #d4e4fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(30, 58, 95, 0.1);
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #1e4a76;
  margin-bottom: 10px;
  line-height: 1.3;
}

.stat-label {
  font-size: 14px;
  color: #4a6a85;
  font-weight: 500;
}

/* ========== SECTION LIAT SUASANA BELAJAR ========== */
.learning-section {
  max-width: 1300px;
  margin: 60px auto 40px;
  padding: 0 40px;
}

.learning-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  background: #f9fbfe;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Kiri: Teks */
.learning-text {
  flex: 1;
  min-width: 280px;
}

.learning-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #0a2b44;
}

.kampung-color {
  color: #67b4eb;
  display: inline-block;
}

.learning-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
}

.learning-desc strong {
  color: #1e4a76;
  font-weight: 700;
}

/* Kanan: Video */
.learning-video {
  flex: 1;
  min-width: 300px;
}

/* ============================================= */
/* VIDEO WRAPPER - RESPONSIVE UNTUK SEMUA DEVICE */
/* ============================================= */
.learning-video {
  width: 100%;
  max-width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;  /* Biar proporsional di semua device */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* Cover foto - PASTI MUNCUL DI SEMUA DEVICE */
.video-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;  /* Biar fotonya full ga terpotong aneh */
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Tombol play overlay di tengah */
.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;  /* Di atas cover foto */
}

/* Responsive: Ukuran tombol lebih kecil di mobile */
@media (max-width: 768px) {
  .play-button-overlay {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .play-button-overlay {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.play-button-overlay:hover {
  background: #67b4eb;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================= */
/* MODAL POPUP VIDEO - RESPONSIVE */
/* ============================================= */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.modal-header {
  text-align: right;
  margin-bottom: 10px;
}

.close-modal {
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.close-modal:hover {
  background: #67b4eb;
  transform: scale(1.1);
}

/* Video dalam modal - full responsive */
.modal-content video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  outline: none;
}

/* Hilangkan tombol download di video */
.modal-content video::-webkit-media-controls-download-button {
  display: none;
}

.modal-content video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

.modal-content video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

/* Mobile: modal fullscreen lebih enak */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }
  
  .close-modal {
    width: 35px;
    height: 35px;
    font-size: 28px;
  }
}
/* ========== SECTION: APAKAH INI YANG KAMU RASAKAN? ========== */

/* Desktop default */
.struggle-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.struggle-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0A2B44;
  margin-bottom: 48px;
  position: relative;
}

/* Container - 3 kolom sejajar */
.struggle-container {
  display: flex;
  justify-content: center;  /* Pastikan ini center */
  align-items: stretch;
  gap: 0;  /* Perkecil gap agar lebih dekat ke tengah */
}

.struggle-left, .struggle-right {
  flex: 0.4;  /* Lebih kecil dari sebelumnya (0.7 → 0.4) */
  min-width: 120px;  /* Kurangi batas minimal */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item card kiri & kanan */
.struggle-item {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  line-height: 1.5;
}

.struggle-item:hover {
  transform: translateX(5px);
  border-color: #67b4eb;
  background: #F8FAFE;
}

/* Hover effect untuk kanan (ke kiri) */
.struggle-right .struggle-item:hover {
  transform: translateX(-5px);
}

.struggle-center {
  flex: 0 0 auto;  /* Bisa disesuaikan */
  display: flex;
  justify-content: center;
  align-items: center;
}

.struggle-center img {
  width: 130%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ========== SECTION CEK KEMAMPUAN BAHASA INGGRIS ========== */
.test-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.test-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0a2b44;
  margin-bottom: 48px;
}

.test-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.test-card {
  background: white;
  border-radius: 10px;
  width: 480px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

/* Foto memanjang ke bawah */
.test-img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.test-content {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.test-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
  line-height: 1.4;
}

.test-price {
  font-size: 24px;
  font-weight: 800;
  color: #f90000;
  margin-bottom: 20px;
}

.btn-test-daftar {
  background: #f39c12;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-test-daftar {
  text-decoration: none; /* Menghilangkan garis bawah */
  display: inline-block; /* Memastikan elemen berperilaku seperti tombol (padding & margin berfungsi baik) */
  
  /* Sisipkan kode CSS Anda yang lain di bawah ini (seperti background-color, padding, dll) */
  color: #ffffff; /* Pastikan warna teks tetap sesuai desain Anda */
}

.btn-test-daftar:hover {
  background: #e67e22;
}

/* Tombol Lihat Semua Program */
.lihat-semua-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-lihat-semua {
  background: white;
  border: 2px solid #67b4eb;
  color: #67b4eb;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-lihat-semua:hover {
  background: #67b4eb;
  color: white;
  transform: translateY(-2px);
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 8px;
  font-size: 0.95em;
}

/* ========== SECTION 4 ALASAN WAJIB MEMILIH GLOBAL ENGLISH ========== */
.alasan-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.alasan-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0a2b44;
  margin-bottom: 48px;
}

.alasan-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: stretch;
}

.alasan-video {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 80px;
}

.alasan-video .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.alasan-video .video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alasan-video .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10;
}

.alasan-video .play-button-overlay:hover {
  background: #67b4eb;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Kanan: Grid 2x2 */
.alasan-grid {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.alasan-card {
  background: white;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.alasan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #67b4eb;
}

.alasan-number {
  font-size: 32px;
  font-weight: 800;
  color: #67b4eb;
  margin-bottom: 12px;
  line-height: 1;
}

.alasan-judul {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
}

.alasan-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
}
/* ========== SECTION PENGAJAR PROFESIONAL ========== */
.pengajar-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.pengajar-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0a2b44;
  margin-bottom: 48px;
}

/* Slider Container - bisa drag dengan kursor */
.slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  border-radius: 10px;
  scrollbar-width: thin;
  padding-bottom: 20px;  /* TAMBAHAN: jarak antara card dengan scrollbar */
  margin-bottom: 10px;   /* TAMBAHAN: jarak ekstra di bawah container */
}

.slider-container:active {
  cursor: grabbing;
}

/* Scrollbar styling - biar lebih jelas */
.slider-container::-webkit-scrollbar {
  height: 6px;
}

.slider-container::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
  margin-top: 10px;  /* TAMBAHAN: jarak scrollbar dari konten */
}

.slider-container::-webkit-scrollbar-thumb {
  background: #67b4eb;
  border-radius: 10px;
}

.slider-track {
  display: flex;
  gap: 15px;
  width: max-content;
}

/* Card Pengajar */
.pengajar-card {
  width: 300px;
  background: white;
  border-radius: 10px;
  padding: 0;  /* DIUBAH: dari 10px menjadi 0px - hilangkan padding card */
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 14, 14, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  overflow: hidden;  /* TAMBAHAN: biar foto rapi dengan border radius card */
}

.pengajar-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ← INI PENYEBABNYA */
  display: block;
}

/* Foto - langsung menempel ke card (tanpa jarak) */
.pengajar-foto {
  width: 100%;
  height: 280px;
  margin-bottom: 0;  /* DIUBAH: dari 16px menjadi 0px */
  overflow: hidden;
  border-radius: 0;  /* DIUBAH: dari 16px menjadi 0px - biar foto full ke tepi card */
  background: #f0f0f0;
}

/* Tambahan padding untuk teks di dalam card (biar tidak nempel ke tepi) */
.pengajar-nama,
.pengajar-prestasi,
.pengajar-instansi {
  padding: 0 12px;  /* TAMBAHAN: padding kiri-kanan untuk teks */
}

.pengajar-nama {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  margin-top: 12px;  /* TAMBAHAN: jarak atas teks setelah foto */
}

.pengajar-prestasi {
  font-size: 13px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.4;
}

.pengajar-instansi {
  font-size: 12px;
  color: #555555;
  font-weight: 500;
  margin-bottom: 12px;  /* TAMBAHAN: jarak bawah teks */
}

/* ========== SECTION YUK DAFTAR SEKARANG ========== */
.daftar-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 40px;
}


.daftar-container {
  background: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.daftar-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.required {
  color: #e67e22;
  font-size: 16px;
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #cbd5e0;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #67b4eb;
  box-shadow: 0 0 0 3px rgba(103, 180, 235, 0.2);
}

/* Teks kecil di bawah field */
.field-note {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  font-style: italic;
}

/* Responsif untuk mobile */
@media screen and (max-width: 480px) {
  .field-note {
    font-size: 10px;
  }
}

/* ============================================ */
/* GENDER - RADIO BUTTON RAPI DI HP & TABLET */
/* ============================================ */

/* Default desktop */
.gender-group {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 8px 0;
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
}

.gender-option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #67b4eb;
}

/* ========== TABLET (769px - 1024px) ========== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gender-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: center;
    padding: 8px 0;
  }

  .gender-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #1a1a1a;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
  }

  .gender-option input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: #67b4eb;
    vertical-align: middle;
  }
}

/* TABLET (max-width: 768px) */
@media screen and (max-width: 768px) {
  .gender-group {
    gap: 25px;
    padding: 6px 0;
  }

  .gender-option {
    font-size: 14px;
    gap: 6px;
  }

  .gender-option input[type="radio"] {
    width: 18px;
    height: 18px;
  }
}

/* HP BESAR (max-width: 640px) */
@media screen and (max-width: 640px) {
  .gender-group {
    gap: 20px;
    padding: 5px 0;
  }

  .gender-option {
    font-size: 14px;
  }

  .gender-option input[type="radio"] {
    width: 18px;
    height: 18px;
  }
}

/* HP SEDANG (max-width: 480px) */
@media screen and (max-width: 480px) {
  .gender-group {
    gap: 30px;
    justify-content: flex-start;
  }

  .gender-option {
    font-size: 14px;
    gap: 8px;
  }

  .gender-option input[type="radio"] {
    width: 17px;
    height: 17px;
  }
}

/* HP KECIL (max-width: 375px) */
@media screen and (max-width: 375px) {
  .gender-group {
    gap: 20px;
  }

  .gender-option {
    font-size: 13px;
    gap: 6px;
  }

  .gender-option input[type="radio"] {
    width: 16px;
    height: 16px;
  }
}

/* WA wrapper dengan kode +62 */
.wa-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd5e0;
  border-radius: 12px;
  background: white;
}

.wa-kode {
  padding: 14px 12px 14px 18px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
  background: #f1f5f9;
  border-radius: 12px 0 0 12px;
  border-right: 1px solid #cbd5e0;
}

.wa-wrapper input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
}

.wa-wrapper input:focus {
  outline: none;
  box-shadow: none;
}

/* Tombol Submit */
.btn-submit {
  background: #f39c12;
  border: none;
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

/* Form Note */
.form-note {
  font-size: 13px;
  color: #e67e22;
  text-align: center;
  margin-top: 16px;
  background: #fef9e6;
  padding: 12px;
  border-radius: 12px;
}

/* ========== SECTION TESTIMONIAL ========== */
.testimonial-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.testimonial-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0a2b44;
  margin-bottom: 16px;
}

.testimonial-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* Slider Container - bisa scroll dengan drag, touch, atau 2 jari */
.testimonial-slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  border-radius: 20px;
  scrollbar-width: thin;
  padding-bottom: 10px;
}

.testimonial-slider-container:active {
  cursor: grabbing;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 4px;
}

/* Testimonial Card */
.testimonial-card {
  width: 380px;
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

/* Header Testimonial */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: #67b4eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-date {
  font-size: 12px;
  color: #888888;
}

/* Text Testimonial */
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scrollbar styling */
.testimonial-slider-container::-webkit-scrollbar {
  height: 6px;
}

.testimonial-slider-container::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.testimonial-slider-container::-webkit-scrollbar-thumb {
  background: #67b4eb;
  border-radius: 10px;
}

.testimonial-slider-container::-webkit-scrollbar-thumb:hover {
  background: #4a9fd4;
}

/* Posisi logo Google di pojok kanan atas */
.testimonial-card {
  position: relative;
}

.testimonial-google {
  position: absolute;
  top: 16px;
  right: 20px;
}

.google-logo {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.google-logo:hover {
  opacity: 1;
}

/* Rating Bintang */
.testimonial-rating {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f5b301;
  margin-bottom: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.testimonial-profile {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1f1f1;
}

.google-logo {
  width: 18px;
  height: 18px;
}

.testimonial-google {
  position: absolute;
  top: 18px;
  right: 18px;
}

.testimonial-card {
  position: relative;
}

/* ========== SECTION FAQ ========== */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 40px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0a2b44;
  margin-bottom: 48px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #67b4eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  background: white;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafe;
}

.faq-icon {
  font-size: 14px;
  color: #67b4eb;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-out,
    padding 0.3s ease;
  padding: 0 24px;
  background: #f9fbfe;
  border-top: none;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
  border-top: 1px solid #e2e8f0;
}

.faq-answer p {
  margin: 0;
  padding: 16px 0 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

/* ========== FOOTER ========== */
.footer {
  background: #0a2b44;
  color: #ffffff;
  margin-top: 60px;
  padding-top: 50px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #67b4eb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #67b4eb;
}

.footer-address,
.footer-phone,
.footer-website {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-phone,
.footer-website {
  margin-bottom: 8px;
}

/* Rating Google */
.footer-rating {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.google-logo-footer {
  width: 20px;
  height: 20px;
}

.rating-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rating-number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.stars {
  font-size: 18px;
  color: #f5b301;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 13px;
  color: #cbd5e0;
  margin-bottom: 4px;
}

.powered-by {
  font-size: 11px;
  color: #8ba0b8;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px 30px 40px;
  text-align: center;
}

.footer-bottom p {
  color: #8ba0b8;
  font-size: 14px;
  margin: 0;
}

/* ========== TOMBOL HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1e3a5f;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Animasi hamburger jadi X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* ============================================= */
/* KHUSUS TABLET PORTRAIT (768px) */
/* ============================================= */

@media screen and (max-width: 768px) {
  /* NAVBAR - CENTER & RAPI */
  .navbar {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 700px;
    padding: 12px 24px;
    border-radius: 60px;
    background: white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.1);
  }

  /* Logo */
  .navbar .logo {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin-top: -2px;
  }

  /* HAMBURGER BUTTON */
  .hamburger {
    display: flex;
    width: 28px;
    height: 20px;
    margin-top: -2px;
  }

  .hamburger span {
    height: 2.5px;
    background-color: #1e3a5f;
    border-radius: 4px;
  }

  /* MENU NAVIGASI DROPDOWN - PERBAIKAN POSISI */
  .nav-links {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 280px;
    background: white;
    flex-direction: column;
    gap: 0;
    border-radius: 20px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    border: 1px solid rgba(30, 58, 95, 0.1);
  }

  /* PERBAIKAN: pakai left: 20px (bukan 24px) biar konsisten */
  .nav-links.active {
    left: 20px;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #2c4c6e;
    transition: all 0.2s ease;
  }

  .nav-links li a:hover,
  .nav-links li a:active {
    background: #f0f6ff;
    color: #67b4eb;
    padding-left: 28px;
  }

  /* HAMBURGER ANIMATION */
  .hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* OVERLAY */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.active {
    display: block;
  }

  /* ========== MAIN CONTENT UNTUK 768px ========== */

  /* HERO SECTION */
  .container {
    flex-direction: column-reverse;
    text-align: center;
    padding: 0px 20px 30px 20px;
    gap: 5px;
  }

  .left {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .right {
    margin-top: 0;
    margin-bottom: 0;
  }

  .image-wrapper img {
    border-radius: 24px;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    padding: 5px 16px;
    margin-top: 5px;
  }

  h1 {
    font-size: 28px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .left p {
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
    margin-bottom: 20px;
  }

  .btn-daftar {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
  }

  /* Stats Container */
  .stats-wrapper {
    padding: 0 20px;
    margin-top: 10px;
  }

  .stats-container {
    gap: 15px;
    flex-wrap: wrap;
  }

  .stat-card {
    min-width: 140px;
    flex: 1;
    padding: 16px 10px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Learning Section */
  .learning-section {
    padding: 0 20px;
    margin: 30px auto;
  }

  .learning-container {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 24px;
  }

  .learning-text {
    text-align: center;
  }

  .learning-title {
    font-size: 24px;
  }

  .learning-desc {
    font-size: 14px;
  }

  .video-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Struggle Section */
  .struggle-section {
    padding: 0 20px;
    margin: 30px auto;
  }

  .struggle-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .struggle-container {
    flex-direction: column;
    gap: 20px;
  }

  .struggle-left,
  .struggle-right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .struggle-center {
    order: -1;
  }

  .struggle-center img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .struggle-item {
    font-size: 13px;
    padding: 12px 16px;
  }
}
/* ============================================= */
/* SECTION: LIAT SUASANA BELAJAR - MOBILE RAPI */
/* ============================================= */

/* UKURAN 768px (TABLET) */
@media screen and (max-width: 768px) {
  .learning-section {
    padding: 0 24px;
    margin: 40px auto;
  }

  .learning-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: #f9fbfe;
    border-radius: 28px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(103, 180, 235, 0.15);
  }

  /* Kiri: Teks */
  .learning-text {
    text-align: center;
    width: 100%;
  }

  .learning-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #0a2b44;
  }

  .kampung-color {
    color: #67b4eb;
    display: inline-block;
  }

  .learning-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
  }

  .learning-desc strong {
    color: #1e4a76;
    font-weight: 700;
  }

  /* Kanan: Video */
  .learning-video {
    width: 100%;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: #000;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .learning-section {
    padding: 0 16px;
    margin: 32px auto;
  }

  .learning-container {
    gap: 24px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .learning-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .learning-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .video-wrapper {
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

/* UKURAN 480px (HP KECIL) */
@media screen and (max-width: 480px) {
  .learning-section {
    padding: 0 12px;
    margin: 28px auto;
  }

  .learning-container {
    gap: 20px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .learning-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .learning-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .video-wrapper {
    border-radius: 14px;
  }
}

/* UKURAN 375px (HP KECIL BANGET) */
@media screen and (max-width: 375px) {
  .learning-section {
    padding: 0 10px;
    margin: 24px auto;
  }

  .learning-container {
    gap: 18px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .learning-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .learning-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* SIMPLER VERSION - FULL WIDTH IMAGE & GRID 2 KOLOM DI BAWAH FOTO */
@media screen and (max-width: 768px) {
  .struggle-section {
    padding: 0;
    margin: 40px 0;
  }

  .struggle-title {
    text-align: center;
    font-size: 24px;
    padding: 0 20px;
    margin-bottom: 28px;
  }

  .struggle-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* FOTO DI ATAS - FULL WIDTH */
  .struggle-center {
    order: -1;
    width: 100%;
    margin-bottom: 10px;
    padding: 0 20px;
  }

  .struggle-center img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  /* GABUNG KIRI & KANAN JADI SATU KOLOM GRID 2x2 */
  .struggle-left,
  .struggle-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 20px;
  }

  .struggle-item {
    text-align: center;
    background: white;
    padding: 14px 12px;
    border-radius: 14px;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    margin: 0;
  }

  .struggle-item:hover {
    transform: translateY(-3px);
    border-color: #67b4eb;
  }

  /* Hapus hover effect kiri/kanan yang berbeda */
  .struggle-left .struggle-item:hover,
  .struggle-right .struggle-item:hover {
    transform: translateY(-3px);
  }
}

/* ============================================= */
/* SECTION: CEK KEMAMPUAN BAHASA INGGRIS - MOBILE */
/* SUPER RAPI & CENTER */
/* ============================================= */

/* UKURAN 768px (TABLET) */
@media screen and (max-width: 768px) {
  .test-section {
    padding: 0 20px;
    margin: 60px auto;
  }

  .test-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .test-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  /* Container - vertical layout */
  .test-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Test card */
  .test-card {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
  }

  .test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #67b4eb;
  }

  /* Gambar test */
  .test-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }

  /* Konten dalam card */
  .test-content {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  /* Nama test */
  .test-name {
    font-size: 18px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  /* Harga */
  .test-price {
    font-size: 28px;
    font-weight: 800;
    color: #67b4eb;
    margin-bottom: 20px;
  }

  /* Tombol daftar */
  .btn-test-daftar {
    background: #f39c12;
    border: none;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
  }

  .btn-test-daftar:hover {
    background: #e67e22;
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
  }

  /* Tombol Lihat Semua Program */
  .lihat-semua-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .btn-lihat-semua {
    background: white;
    border: 2px solid #67b4eb;
    color: #67b4eb;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-lihat-semua:hover {
    background: #67b4eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(103, 180, 235, 0.3);
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .test-section {
    padding: 0 16px;
    margin: 50px auto;
  }

  .test-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .test-title:after {
    width: 50px;
    height: 3px;
    margin-top: 12px;
  }

  .test-container {
    gap: 24px;
    max-width: 450px;
  }

  .test-card {
    max-width: 420px;
    border-radius: 20px;
  }

  .test-img {
    height: 580px;
  }

  .test-content {
    padding: 20px;
  }

  .test-name {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .test-price {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .btn-test-daftar {
    padding: 12px 16px;
    font-size: 15px;
  }

  .btn-lihat-semua {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .test-section {
    padding: 0 14px;
    margin: 40px auto;
  }

  .test-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .test-title:after {
    width: 45px;
    height: 2.5px;
    margin-top: 10px;
  }

  .test-container {
    gap: 20px;
  }

  .test-card {
    max-width: 400px;
    border-radius: 18px;
  }

  .test-img {
    height: 650px;
  }

  .test-content {
    padding: 18px;
  }

  .test-name {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .test-price {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .btn-test-daftar {
    padding: 10px 14px;
    font-size: 14px;
  }

  .lihat-semua-wrapper {
    margin-top: 32px;
  }

  .btn-lihat-semua {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .test-section {
    padding: 0 12px;
    margin: 35px auto;
  }

  .test-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .test-container {
    gap: 18px;
  }

  .test-card {
    border-radius: 16px;
  }

  .test-img {
    height: 500px;
  }

  .test-content {
    padding: 16px;
  }

  .test-name {
    font-size: 14px;
  }

  .test-price {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .btn-test-daftar {
    padding: 9px 12px;
    font-size: 13px;
  }

  .lihat-semua-wrapper {
    margin-top: 28px;
  }

  .btn-lihat-semua {
    padding: 9px 20px;
    font-size: 13px;
  }
}
/* Setiap section punya margin seperti ini: */
.program-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.test-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.struggle-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.learning-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.alasan-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.testimonial-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.faq-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.daftar-section {
  margin: 60px auto; /* ← ubah angka ini */
}

.pengajar-section {
  margin: 60px auto; /* ← ubah angka ini */
}

/* ============================================= */
/* SECTION: ALASAN MEMILIH LEARNING 7 - MOBILE */
/* SUPER RAPI & CENTER */
/* ============================================= */

/* UKURAN 768px (TABLET) */
@media screen and (max-width: 768px) {
  .alasan-section {
    padding: 0 20px;
    margin: 60px auto;
  }

  .alasan-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .alasan-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  /* Container - vertical layout */
  .alasan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Foto - full width di atas */
  .alasan-foto {
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .alasan-foto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  /* Grid alasan - jadi 1 kolom */
  .alasan-grid {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Card alasan */
  .alasan-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
  }

  .alasan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #67b4eb;
  }

  /* Nomor alasan */
  .alasan-number {
    font-size: 36px;
    font-weight: 800;
    color: #67b4eb;
    margin-bottom: 12px;
    line-height: 1;
  }

  /* Judul alasan */
  .alasan-judul {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  /* Deskripsi alasan */
  .alasan-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .alasan-section {
    padding: 0 16px;
    margin: 50px auto;
  }

  .alasan-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .alasan-title:after {
    width: 50px;
    height: 3px;
    margin-top: 12px;
  }

  .alasan-container {
    gap: 24px;
  }

  .alasan-foto {
    max-width: 420px;
    border-radius: 20px;
  }

  .alasan-foto img {
    height: 200px;
  }

  .alasan-grid {
    max-width: 420px;
    gap: 18px;
  }

  .alasan-card {
    padding: 20px;
    border-radius: 18px;
  }

  .alasan-number {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .alasan-judul {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .alasan-desc {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .alasan-section {
    padding: 0 14px;
    margin: 40px auto;
  }

  .alasan-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .alasan-title:after {
    width: 45px;
    height: 2.5px;
    margin-top: 10px;
  }

  .alasan-container {
    gap: 20px;
  }

  .alasan-foto {
    max-width: 400px;
    border-radius: 18px;
  }

  .alasan-foto img {
    height: 180px;
  }

  .alasan-grid {
    max-width: 400px;
    gap: 16px;
  }

  .alasan-card {
    padding: 18px;
    border-radius: 16px;
  }

  .alasan-number {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .alasan-judul {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .alasan-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .alasan-section {
    padding: 0 12px;
    margin: 35px auto;
  }

  .alasan-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .alasan-container {
    gap: 18px;
  }

  .alasan-foto {
    border-radius: 16px;
  }

  .alasan-foto img {
    height: 160px;
  }

  .alasan-grid {
    gap: 14px;
  }

  .alasan-card {
    padding: 16px;
    border-radius: 14px;
  }

  .alasan-number {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .alasan-judul {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .alasan-desc {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ============================================= */
/* SECTION: TESTIMONIAL - MOBILE RAPI */
/* HORIZONTAL SCROLL - TEPI KIRI TIDAK KEPOTONG */
/* ============================================= */

/* UKURAN 768px (TABLET) */
@media screen and (max-width: 768px) {
  .testimonial-section {
    padding: 0;
    margin: 60px 0;
  }

  .testimonial-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 16px;
    padding: 0 20px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .testimonial-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  .testimonial-subtitle {
    text-align: center;
    font-size: 15px;
    color: #4a5568;
    max-width: 450px;
    margin: 0 auto 32px;
    padding: 0 20px;
    line-height: 1.5;
  }

  /* Container - bisa scroll horizontal */
  .testimonial-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px 0;
    cursor: grab;
  }

  .testimonial-slider-container:active {
    cursor: grabbing;
  }

  /* Scrollbar styling */
  .testimonial-slider-container::-webkit-scrollbar {
    height: 4px;
  }

  .testimonial-slider-container::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }

  .testimonial-slider-container::-webkit-scrollbar-thumb {
    background: #67b4eb;
    border-radius: 10px;
  }

  /* Track - horizontal scroll, PENTING: padding kiri untuk card pertama */
  .testimonial-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
  }

  /* Testimonial card - ukuran tetap di mobile */
  .testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
    position: relative;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  /* Logo Google */
  .testimonial-google {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .google-logo {
    width: 20px;
    height: 20px;
    opacity: 0.7;
  }

  /* Header */
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    background: #67b4eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .testimonial-info {
    flex: 1;
  }

  .testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
  }

  .testimonial-date {
    font-size: 12px;
    color: #888888;
  }

  /* Rating */
  .testimonial-rating {
    font-size: 14px;
    letter-spacing: 2px;
    color: #f5b301;
    margin-bottom: 12px;
  }

  /* Teks testimonial - dibatasi 4 baris biar rapi */
  .testimonial-text {
    font-size: 13px;
    line-height: 1.55;
    color: #333333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .testimonial-title {
    font-size: 24px;
    padding: 0 16px;
  }

  .testimonial-title:after {
    width: 50px;
    margin-top: 12px;
  }

  .testimonial-subtitle {
    font-size: 14px;
    padding: 0 16px;
    margin-bottom: 28px;
  }

  .testimonial-track {
    gap: 16px;
    padding: 0 16px;
  }

  .testimonial-card {
    width: 300px;
    padding: 20px;
    border-radius: 20px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .testimonial-name {
    font-size: 15px;
  }

  .testimonial-text {
    font-size: 12px;
    -webkit-line-clamp: 4;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .testimonial-title {
    font-size: 22px;
    padding: 0 14px;
  }

  .testimonial-title:after {
    width: 45px;
    height: 2.5px;
    margin-top: 10px;
  }

  .testimonial-subtitle {
    font-size: 13px;
    padding: 0 14px;
    margin-bottom: 24px;
  }

  .testimonial-track {
    gap: 14px;
    padding: 0 14px;
  }

  .testimonial-card {
    width: 280px;
    padding: 18px;
    border-radius: 18px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 14px;
  }

  .testimonial-date {
    font-size: 10px;
  }

  .testimonial-rating {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 11px;
    -webkit-line-clamp: 4;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .testimonial-track {
    gap: 12px;
    padding: 0 12px;
  }

  .testimonial-card {
    width: 270px;
    padding: 16px;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .testimonial-name {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 10px;
    -webkit-line-clamp: 4;
  }
}

/* ============================================= */
/* SECTION: YUK DAFTAR SEKARANG - MOBILE RAPI */
/* ============================================= */

/* UKURAN 768px (TABLET) */
@media screen and (max-width: 768px) {
  .daftar-section {
    padding: 0 20px;
    margin: 60px auto;
  }

  /* Container form */
  .daftar-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8edf2;
  }

  /* Form */
  .daftar-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Form group */
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .required {
    color: #f39c12;
    font-size: 15px;
  }

  /* Input field */
  .form-group input,
  .form-group select {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
    width: 100%;
  }

  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #67b4eb;
    box-shadow: 0 0 0 3px rgba(103, 180, 235, 0.2);
  }

  /* WA wrapper */
  .wa-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e0;
    border-radius: 14px;
    background: white;
    overflow: hidden;
  }

  .wa-wrapper:focus-within {
    border-color: #67b4eb;
    box-shadow: 0 0 0 3px rgba(103, 180, 235, 0.2);
  }

  .wa-kode {
    padding: 14px 12px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    background: #f1f5f9;
    border-right: 1px solid #cbd5e0;
  }

  .wa-wrapper input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    border-radius: 0;
  }

  .wa-wrapper input:focus {
    outline: none;
    box-shadow: none;
  }

  /* Tombol submit */
  .btn-submit {
    background: #f39c12;
    border: none;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  }

  .btn-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
  }

  .btn-submit:active {
    transform: translateY(0);
  }

  /* Form note */
  .form-note {
    font-size: 12px;
    color: #e67e22;
    text-align: center;
    margin-top: 8px;
    background: #fef9e6;
    padding: 12px;
    border-radius: 14px;
    line-height: 1.5;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .daftar-section {
    padding: 0 16px;
    margin: 50px auto;
  }

  .daftar-container {
    max-width: 450px;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .daftar-form {
    gap: 20px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  .wa-kode {
    padding: 12px 10px;
    font-size: 14px;
  }

  .wa-wrapper input {
    padding: 12px 14px;
  }

  .btn-submit {
    padding: 14px 20px;
    font-size: 16px;
  }

  .form-note {
    font-size: 11px;
    padding: 10px;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .daftar-section {
    padding: 0 14px;
    margin: 40px auto;
  }

  .daftar-container {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .daftar-form {
    gap: 18px;
  }

  .form-group {
    gap: 6px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select {
    padding: 11px 12px;
    font-size: 13px;
    border-radius: 10px;
  }

  .wa-kode {
    padding: 11px 8px;
    font-size: 13px;
  }

  .wa-wrapper input {
    padding: 11px 12px;
  }

  .btn-submit {
    padding: 12px 18px;
    font-size: 15px;
  }

  .form-note {
    font-size: 10px;
    padding: 8px;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .daftar-section {
    padding: 0 12px;
    margin: 35px auto;
  }

  .daftar-container {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .daftar-form {
    gap: 16px;
  }

  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 12px;
  }

  .wa-kode {
    padding: 10px 8px;
    font-size: 12px;
  }

  .wa-wrapper input {
    padding: 10px 12px;
  }

  .btn-submit {
    padding: 11px 16px;
    font-size: 14px;
  }
}

/* ============================================= */
/* SECTION: PENGAJAR PROFESIONAL - MOBILE RAPI */
/* UKURAN DIPERBESAR AGAR BISA DIBACA */
/* ============================================= */
/* ========== SECTION PENGAJAR PROFESIONAL - MOBILE RAPI ========== */

/* UKURAN 768px (TABLET & HP) */
@media screen and (max-width: 768px) {
  .pengajar-section {
    padding: 0;
    margin: 50px 0;
  }

  .pengajar-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.3;
    position: relative;
  }

  .pengajar-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 14px auto 0;
    border-radius: 10px;
  }

  /* SLIDER CONTAINER - BISA SCROLL KESAMPING */
  .slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 25px 0;
    cursor: grab;
  }

  .slider-container:active {
    cursor: grabbing;
  }

  /* SCROLLBAR STYLING */
  .slider-container::-webkit-scrollbar {
    height: 4px;
  }

  .slider-container::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }

  .slider-container::-webkit-scrollbar-thumb {
    background: #67b4eb;
    border-radius: 10px;
  }

  /* TRACK - HORIZONTAL SCROLL */
  .slider-track {
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: max-content;
    padding: 0 20px;
  }

  /* CARD PENGAJAR */
  .pengajar-card {
    width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .pengajar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: #67b4eb;
  }

  /* FOTO - MENEMPEL KE CARD */
  .pengajar-foto {
    width: 100%;
    height: 280px;
    margin-bottom: 0;
    overflow: hidden;
    background: #f0f0f0;
  }

  .pengajar-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* BIAR FOTO FULL KELIHATAN */
    display: block;
    transition: transform 0.3s ease;
  }

  .pengajar-card:hover .pengajar-foto img {
    transform: scale(1.03);
  }

  /* TEKS DALAM CARD - PAKAI PADDING */
  .pengajar-nama,
  .pengajar-prestasi,
  .pengajar-instansi {
    padding: 0 16px;
  }

  .pengajar-nama {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    margin-top: 14px;
    line-height: 1.3;
  }

  .pengajar-prestasi {
    font-size: 12px;
    color: #444;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .pengajar-instansi {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.4;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .pengajar-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .pengajar-title:after {
    width: 50px;
    margin-top: 12px;
  }

  .slider-track {
    gap: 15px;
    padding: 0 16px;
  }

  .pengajar-card {
    width: 260px;
    border-radius: 18px;
  }

  .pengajar-foto {
    height: 260px;
  }

  .pengajar-nama {
    font-size: 17px;
    margin-top: 12px;
  }

  .pengajar-prestasi {
    font-size: 11px;
  }

  .pengajar-instansi {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .pengajar-nama,
  .pengajar-prestasi,
  .pengajar-instansi {
    padding: 0 14px;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .pengajar-title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .pengajar-title:after {
    width: 45px;
    margin-top: 10px;
  }

  .slider-track {
    gap: 14px;
    padding: 0 14px;
  }

  .pengajar-card {
    width: 250px;
    border-radius: 16px;
  }

  .pengajar-foto {
    height: 250px;
  }

  .pengajar-nama {
    font-size: 16px;
    margin-top: 10px;
  }

  .pengajar-prestasi {
    font-size: 10px;
  }

  .pengajar-instansi {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .pengajar-nama,
  .pengajar-prestasi,
  .pengajar-instansi {
    padding: 0 12px;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .pengajar-section {
    margin: 40px 0;
  }

  .pengajar-title {
    font-size: 20px;
    padding: 0 14px;
  }

  .slider-track {
    gap: 12px;
    padding: 0 12px;
  }

  .pengajar-card {
    width: 240px;
    border-radius: 14px;
  }

  .pengajar-foto {
    height: 240px;
  }

  .pengajar-nama {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .pengajar-prestasi {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .pengajar-instansi {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .pengajar-nama,
  .pengajar-prestasi,
  .pengajar-instansi {
    padding: 0 10px;
  }
}

/* ============================================= */
/* SECTION: FAQ - PALING SERING DITANYAKAN */
/* MOBILE RAPI & MUDAH DIBACA */
/* ============================================= */

/* UKURAN 768px (TABLET) */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 0 20px;
    margin: 60px auto;
  }

  .faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 32px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .faq-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  /* FAQ Container */
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* FAQ Item */
  .faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid #e8edf2;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  .faq-item:hover {
    border-color: #67b4eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  /* FAQ Question */
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    background: white;
    transition: background 0.2s;
    gap: 12px;
  }

  .faq-question:hover {
    background: #f8fafe;
  }

  /* Icon panah */
  .faq-icon {
    font-size: 14px;
    color: #67b4eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  /* FAQ Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease-out,
      padding 0.3s ease;
    padding: 0 20px;
    background: #f9fbfe;
    border-top: none;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px 20px;
    border-top: 1px solid #e8edf2;
  }

  .faq-answer p {
    margin: 0;
    padding: 16px 0 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .faq-section {
    padding: 0 16px;
    margin: 50px auto;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .faq-title:after {
    width: 50px;
    height: 3px;
    margin-top: 12px;
  }

  .faq-container {
    gap: 14px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-icon {
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .faq-section {
    padding: 0 14px;
    margin: 40px auto;
  }

  .faq-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .faq-title:after {
    width: 45px;
    height: 2.5px;
    margin-top: 10px;
  }

  .faq-container {
    gap: 12px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq-icon {
    font-size: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px;
  }

  .faq-answer p {
    font-size: 12px;
    line-height: 1.55;
    padding-top: 14px;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .faq-section {
    padding: 0 12px;
    margin: 35px auto;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: 13px;
  }

  .faq-icon {
    font-size: 11px;
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 14px 14px;
  }

  .faq-answer p {
    font-size: 11px;
    line-height: 1.5;
    padding-top: 12px;
  }
}

/* ============================================= */
/* FOOTER - MOBILE SUPER RAPI & ELEGAN */
/* ============================================= */

@media screen and (max-width: 768px) {
  .footer {
    background: #0a2b44;
    color: #ffffff;
    margin-top: 60px;
    padding-top: 48px;
  }

  .footer-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Kolom footer */
  .footer-col {
    text-align: center;
    width: 100%;
  }

  .footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
  }

  .footer-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #67b4eb;
    border-radius: 2px;
  }

  /* Branding / Kolom 1 */
  .footer-col:first-child .footer-address {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 20px;
    font-style: italic;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .footer-links a:hover {
    color: #67b4eb;
    transform: translateX(3px);
  }

  /* Kontak & Lokasi */
  .footer-col:last-child .footer-address,
  .footer-phone,
  .footer-website,
  .footer-status {
    color: #cbd5e0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .footer-address {
    margin-bottom: 16px;
  }

  /* Maps container */
  .maps-container {
    width: 100%;
    margin-top: 8px;
  }

  .maps-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Footer bottom */
  .footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 24px;
    text-align: center;
  }

  .footer-bottom p {
    color: #8ba0b8;
    font-size: 12px;
    margin: 0;
  }
}

/* UKURAN 640px (HP BESAR) */
@media screen and (max-width: 640px) {
  .footer {
    margin-top: 50px;
    padding-top: 40px;
  }

  .footer-container {
    padding: 0 20px 35px 20px;
    gap: 28px;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .footer-title::after {
    width: 45px;
    bottom: -8px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-address,
  .footer-phone,
  .footer-website,
  .footer-status {
    font-size: 12px;
  }

  .maps-container iframe {
    height: 180px;
    border-radius: 18px;
  }

  .footer-bottom {
    padding: 18px 20px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}

/* UKURAN 480px (HP SEDANG) */
@media screen and (max-width: 480px) {
  .footer {
    margin-top: 40px;
    padding-top: 35px;
  }

  .footer-container {
    padding: 0 16px 30px 16px;
    gap: 25px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-title::after {
    width: 40px;
    height: 2px;
    bottom: -7px;
  }

  .footer-col:first-child .footer-address {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-address,
  .footer-phone,
  .footer-website,
  .footer-status {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .maps-container iframe {
    height: 160px;
    border-radius: 16px;
  }

  .footer-bottom {
    padding: 16px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}

/* UKURAN 375px (HP KECIL) */
@media screen and (max-width: 375px) {
  .footer {
    margin-top: 35px;
    padding-top: 30px;
  }

  .footer-container {
    padding: 0 14px 25px 14px;
    gap: 22px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-title::after {
    width: 35px;
    bottom: -6px;
  }

  .footer-col:first-child .footer-address {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-address,
  .footer-phone,
  .footer-website,
  .footer-status {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .maps-container iframe {
    height: 140px;
    border-radius: 14px;
  }

  .footer-bottom {
    padding: 14px;
  }

  .footer-bottom p {
    font-size: 9px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - NAVBAR RAPI */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Navbar tablet */
  .navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 960px;
    padding: 16px 32px;
    border-radius: 80px;
    background: white;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.1);
    z-index: 1000;
  }

  /* Logo tablet */
  .navbar .logo {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a5f;
  }

  .navbar .logo span {
    color: #67b4eb;
  }

  /* Sembunyikan hamburger di tablet */
  .hamburger {
    display: none;
  }

  /* Nav links - tampil horizontal */
  .nav-links {
    display: flex;
    position: static;
    width: auto;
    background: transparent;
    flex-direction: row;
    gap: 32px;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .nav-links li {
    width: auto;
    text-align: center;
  }

  .nav-links li a {
    display: inline-block;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #2c4c6e;
    background: transparent;
    transition: all 0.2s ease;
  }

  .nav-links li a:hover {
    color: #67b4eb;
    background: transparent;
    padding-left: 0;
    transform: translateY(-2px);
  }

  /* Overlay tidak perlu di tablet */
  .nav-overlay {
    display: none !important;
  }

  /* Body padding untuk navbar fixed */
  body {
    padding-top: 90px;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 900px) */
/* ============================================= */
@media screen and (min-width: 769px) and (max-width: 900px) {
  .navbar {
    padding: 14px 28px;
    width: calc(100% - 40px);
  }

  .navbar .logo {
    font-size: 20px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  body {
    padding-top: 85px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (901px - 1024px) */
/* ============================================= */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .navbar {
    padding: 18px 36px;
    width: calc(100% - 60px);
  }

  .navbar .logo {
    font-size: 24px;
  }

  .nav-links {
    gap: 36px;
  }

  .nav-links li a {
    font-size: 16px;
  }
}

/* ============================================= */
/* TABLET KE ATAS (min-width: 769px) - OVERRIDE MOBILE */
/* ============================================= */
@media screen and (min-width: 769px) {
  /* Reset gaya mobile */
  .nav-links {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: none;
  }

  .nav-links.active {
    left: auto;
  }

  .nav-links li a {
    padding: 0;
  }

  .nav-links li a:hover {
    padding-left: 0;
  }

  .hamburger {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - HERO SECTION RAPI */
/* FIX: GA BISA DIGESER KESAMPING */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Fix overflow - prevent horizontal scroll */
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  html {
    overflow-x: hidden;
    width: 100%;
  }

  /* Container utama - 2 kolom tetap */
  .container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 32px 50px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow-x: hidden; /* tambahan */
  }

  /* Kolom kiri (teks) */
  .left {
    flex: 1;
    text-align: left;
    max-width: 50%;
    overflow-x: hidden;
  }

  /* Badge */
  .badge {
    background: #e8f0fe;
    color: #1e4a76;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  /* Judul H1 */
  h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2b44;
    line-height: 1.2;
    margin-bottom: 20px;
    word-wrap: break-word;
  }

  h1 span {
    color: #67b4eb;
  }

  /* Paragraf */
  .left p {
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 28px;
    word-wrap: break-word;
  }

  .left p strong {
    color: #67b4eb;
  }

  /* Tombol daftar */
  .btn-daftar {
    background: #f39c12;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    display: inline-block;
  }

  .btn-daftar:hover {
    background: #e67e22;
    transform: translateY(-2px);
  }

  /* Kolom kanan (gambar) */
  .right {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 50%;
    overflow-x: hidden;
  }

  .image-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 900px) */
/* ============================================= */
@media screen and (min-width: 769px) and (max-width: 900px) {
  body,
  html {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding: 90px 28px 40px 28px;
    gap: 40px;
  }

  h1 {
    font-size: 32px;
  }

  .left p {
    font-size: 13px;
  }

  .btn-daftar {
    font-size: 15px;
    padding: 11px 24px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (901px - 1024px) */
/* ============================================= */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  body,
  html {
    overflow-x: hidden;
  }

  .container {
    max-width: 1000px;
    padding: 110px 40px 60px 40px;
    gap: 60px;
  }

  h1 {
    font-size: 42px;
  }

  .left p {
    font-size: 15px;
  }

  .btn-daftar {
    font-size: 17px;
    padding: 14px 32px;
  }
}

/* ============================================= */
/* GLOBAL FIX UNTUK SEMUA ELEMENT DI TABLET */
/* ============================================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Pastikan semua element ga bisa overflow */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Fix untuk gambar */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Fix untuk wrapper */
  .image-wrapper,
  .right,
  .left {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - STATISTIK RAPI */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Stats wrapper */
  .stats-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 0 32px;
    width: 100%;
    overflow-x: hidden;
  }

  .stats-container {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
  }

  /* Stat card */
  .stat-card {
    flex: 1;
    min-width: 180px;
    background: #f0f6ff;
    padding: 24px 16px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #d4e4fc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(30, 58, 95, 0.1);
    border-color: #67b4eb;
  }

  /* Stat number */
  .stat-number {
    font-size: 20px;
    font-weight: 800;
    color: #1e4a76;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  /* Stat label */
  .stat-label {
    font-size: 14px;
    color: #4a6a85;
    font-weight: 500;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 900px) */
/* ============================================= */
@media screen and (min-width: 769px) and (max-width: 900px) {
  .stats-wrapper {
    padding: 0 28px;
    margin-top: 25px;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-card {
    min-width: 160px;
    padding: 20px 12px;
    border-radius: 18px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (901px - 1024px) */
/* ============================================= */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .stats-wrapper {
    padding: 0 40px;
    margin-top: 35px;
  }

  .stats-container {
    max-width: 1000px;
    gap: 30px;
  }

  .stat-card {
    min-width: 200px;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 15px;
  }
}

/* ============================================= */
/* TABEL 768px KHUSUS (iPad Portrait) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .stats-wrapper {
    padding: 0 24px;
    margin-top: 20px;
  }

  .stats-container {
    gap: 16px;
  }

  .stat-card {
    min-width: 150px;
    padding: 18px 10px;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - LEARNING SECTION RAPI */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .learning-section {
    max-width: 100%;
    margin: 50px auto;
    padding: 0 32px;
  }

  .learning-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #f9fbfe;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(103, 180, 235, 0.1);
  }

  /* Kiri: Teks */
  .learning-text {
    flex: 1;
    text-align: left;
  }

  .learning-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0a2b44;
  }

  .kampung-color {
    color: #67b4eb;
  }

  .learning-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
  }

  .learning-desc strong {
    color: #1e4a76;
    font-weight: 700;
  }

  /* Kanan: Video */
  .learning-video {
    flex: 1;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 900px) */
/* ============================================= */
@media screen and (min-width: 769px) and (max-width: 900px) {
  .learning-section {
    padding: 0 28px;
    margin: 40px auto;
  }

  .learning-container {
    gap: 40px;
    padding: 36px 32px;
    border-radius: 28px;
  }

  .learning-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .learning-desc {
    font-size: 14px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (901px - 1024px) */
/* ============================================= */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .learning-section {
    padding: 0 40px;
    margin: 60px auto;
  }

  .learning-container {
    max-width: 1000px;
    gap: 60px;
    padding: 52px;
    border-radius: 36px;
  }

  .learning-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .learning-desc {
    font-size: 17px;
  }
}

/* ============================================= */
/* TABLET 768px KHUSUS (iPad Portrait) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .learning-section {
    padding: 0 24px;
    margin: 35px auto;
  }

  .learning-container {
    gap: 35px;
    padding: 32px 28px;
    border-radius: 26px;
  }

  .learning-title {
    font-size: 26px;
  }

  .learning-desc {
    font-size: 14px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - STRUGGLE SECTION RAPI */
/* ============================================= */

/* ============================================= */
/* TABLET PORTRAIT (768px - 900px) - DESIGN KHUSUS */
/* LAYOUT: FOTO DI ATAS, TEKS DI BAWAH (2 KOLOM) */
/* ============================================= */

@media screen and (min-width: 768px) and (max-width: 900px) {
  .struggle-section {
    width: 100%;
    margin: 40px 0;
    padding: 0 20px;
  }

  .struggle-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #0A2B44;
    margin-bottom: 30px;
    line-height: 1.3;
    padding: 0 10px;
  }

  /* Container berubah jadi column (foto di atas) */
  .struggle-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Foto di atas - full width terbatas */
  .struggle-center {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .struggle-center img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
  }

  /* Kolom kiri dan kanan jadi 2 kolom sejajar */
  .struggle-left,
  .struggle-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  /* Item card - tampil dalam grid 2 kolom */
  .struggle-item {
    background: white;
    padding: 16px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  .struggle-item:hover {
    transform: translateY(-3px);
    border-color: #67b4eb;
    background: #F8FAFE;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  }

  /* Hover effect untuk semua item (ke atas) */
  .struggle-left .struggle-item:hover,
  .struggle-right .struggle-item:hover {
    transform: translateY(-3px);
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 820px) - iPAD MINI */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 820px) {
  .struggle-section {
    padding: 0 16px;
    margin: 35px 0;
  }

  .struggle-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .struggle-container {
    max-width: 550px;
    gap: 25px;
  }

  .struggle-center img {
    max-width: 300px;
    border-radius: 20px;
  }

  .struggle-left,
  .struggle-right {
    gap: 12px;
  }

  .struggle-item {
    padding: 14px 12px;
    font-size: 12px;
    border-radius: 14px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (901px - 1024px) */
/* ============================================= */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .struggle-section {
    padding: 0 40px;
    margin: 60px auto;
  }

  .struggle-title {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .struggle-container {
    max-width: 1000px;
    gap: 36px;
  }

  .struggle-left,
  .struggle-right {
    gap: 18px;
  }

  .struggle-center img {
    max-width: 300px;
    border-radius: 24px;
  }

  .struggle-item {
    padding: 18px 22px;
    font-size: 15px;
    border-radius: 18px;
  }
}

/* ============================================= */
/* TABLET 768px KHUSUS (iPad Portrait) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .struggle-section {
    padding: 0 24px;
    margin: 35px auto;
  }

  .struggle-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .struggle-container {
    gap: 20px;
  }

  .struggle-center img {
    max-width: 200px;
  }

  .struggle-item {
    padding: 12px 14px;
    font-size: 12px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - TEST SECTION */
/* SUPER RAPI & PROPORSIONAL */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .test-section {
    width: 100%;
    margin: 50px 0;
    padding: 0;
  }

  .test-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 40px;
    line-height: 1.3;
  }

  /* Container - lebih kecil dan center */
  .test-container {
    max-width: 760px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  /* Test card - ukuran tetap */
  .test-card {
    width: calc(50% - 25px);
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin: 0 auto;
  }

  .test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  /* Gambar test */
  .test-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }

  /* Konten dalam card */
  .test-content {
    padding: 20px;
    text-align: center;
  }

  /* Nama test */
  .test-name {
    font-size: 15px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* Harga */
  .test-price {
    font-size: 24px;
    font-weight: 800;
    color: #67b4eb;
    margin-bottom: 16px;
  }

  /* Tombol daftar */
  .btn-test-daftar {
    background: #f39c12;
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }

  .btn-test-daftar:hover {
    background: #e67e22;
  }

  /* Tombol Lihat Semua */
  .lihat-semua-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .btn-lihat-semua {
    background: white;
    border: 2px solid #67b4eb;
    color: #67b4eb;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-lihat-semua:hover {
    background: #67b4eb;
    color: white;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 850px) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 850px) {
  .test-container {
    width: 90%;
    gap: 20px;
  }

  .test-card {
    width: calc(50% - 20px);
    min-width: 250px;
  }

  .test-img {
    height: 500px;
  }

  .test-content {
    padding: 16px;
  }

  .test-name {
    font-size: 13px;
  }

  .test-price {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .btn-test-daftar {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (851px - 1024px) */
/* ============================================= */
@media screen and (min-width: 851px) and (max-width: 1024px) {
  .test-container {
    max-width: 860px;
    gap: 30px;
  }

  .test-card {
    width: calc(50% - 30px);
    min-width: 300px;
  }

  .test-img {
    height: 700px;
  }

  .test-content {
    padding: 24px;
  }

  .test-name {
    font-size: 16px;
  }

  .test-price {
    font-size: 26px;
  }

  .btn-test-daftar {
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* ============================================= */
/* TABLET 768px KHUSUS */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .test-container {
    width: 92%;
    gap: 16px;
  }

  .test-card {
    width: calc(50% - 16px);
    min-width: 240px;
  }

  .test-img {
    height: 750px;
  }

  .test-content {
    padding: 14px;
  }

  .test-name {
    font-size: 12px;
  }

  .test-price {
    font-size: 18px;
  }

  .btn-test-daftar {
    padding: 9px 10px;
    font-size: 12px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - ALASAN SECTION */
/* FOTO DI ATAS, GRID 2x2 DI BAWAH */
/* FOTO LEBIH TINGGI */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .alasan-section {
    width: 100%;
    margin: 60px 0;
    padding: 0 20px;
  }

  .alasan-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .alasan-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  /* Container - column (foto di atas, grid di bawah) */
  .alasan-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Foto di atas - lebih tinggi */
  .alasan-foto {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .alasan-foto img {
    width: 100%;
    max-width: 100%;
    height: 320px; /* TAMBAH: tinggi tetap 320px */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }

  /* Grid 2x2 di bawah */
  .alasan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Card alasan */
  .alasan-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  .alasan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #67b4eb;
  }

  /* Nomor alasan */
  .alasan-number {
    font-size: 28px;
    font-weight: 800;
    color: #67b4eb;
    margin-bottom: 12px;
    line-height: 1;
  }

  /* Judul alasan */
  .alasan-judul {
    font-size: 17px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* Deskripsi alasan */
  .alasan-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 850px) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 850px) {
  .alasan-section {
    padding: 0 16px;
    margin: 50px 0;
  }

  .alasan-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .alasan-title:after {
    width: 50px;
    margin-top: 12px;
  }

  .alasan-container {
    gap: 32px;
  }

  .alasan-foto img {
    height: 280px; /* LEBIH TINGGI DI TABLET KECIL */
    border-radius: 20px;
  }

  .alasan-grid {
    gap: 18px;
  }

  .alasan-card {
    padding: 18px;
    border-radius: 18px;
  }

  .alasan-number {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .alasan-judul {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .alasan-desc {
    font-size: 12px;
    line-height: 1.55;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (851px - 1024px) */
/* ============================================= */
@media screen and (min-width: 851px) and (max-width: 1024px) {
  .alasan-section {
    padding: 0 30px;
    margin: 70px 0;
  }

  .alasan-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .alasan-title:after {
    width: 70px;
    margin-top: 18px;
  }

  .alasan-container {
    max-width: 1000px;
    gap: 45px;
  }

  .alasan-foto img {
    height: 380px; /* LEBIH TINGGI DI LANDSCAPE */
    border-radius: 28px;
  }

  .alasan-grid {
    gap: 28px;
  }

  .alasan-card {
    padding: 28px;
    border-radius: 24px;
  }

  .alasan-number {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .alasan-judul {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .alasan-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ============================================= */
/* TABLET 768px KHUSUS (iPad Portrait) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .alasan-section {
    padding: 0 14px;
    margin: 45px 0;
  }

  .alasan-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .alasan-title:after {
    width: 45px;
    margin-top: 10px;
  }

  .alasan-container {
    gap: 28px;
  }

  .alasan-foto img {
    height: 260px; /* TINGGI UNTUK iPAD */
    border-radius: 20px;
  }

  .alasan-grid {
    gap: 15px;
  }

  .alasan-card {
    padding: 16px;
    border-radius: 16px;
  }

  .alasan-number {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .alasan-judul {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .alasan-desc {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - TESTIMONIAL SECTION */
/* HORIZONTAL SCROLL - RAPI DI TABLET */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .testimonial-section {
    width: 100%;
    margin: 60px 0;
    padding: 0;
  }

  .testimonial-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 16px;
    padding: 0 20px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .testimonial-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  .testimonial-subtitle {
    text-align: center;
    font-size: 14px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 35px;
    padding: 0 20px;
    line-height: 1.5;
  }

  /* Container - horizontal scroll */
  .testimonial-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px 0;
    cursor: grab;
  }

  .testimonial-slider-container:active {
    cursor: grabbing;
  }

  /* Scrollbar styling */
  .testimonial-slider-container::-webkit-scrollbar {
    height: 4px;
  }

  .testimonial-slider-container::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }

  .testimonial-slider-container::-webkit-scrollbar-thumb {
    background: #67b4eb;
    border-radius: 10px;
  }

  /* Track - horizontal scroll dengan padding kiri/kanan */
  .testimonial-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
  }

  /* Testimonial card - ukuran pas untuk tablet */
  .testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #67b4eb;
  }

  /* Logo Google */
  .testimonial-google {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .google-logo {
    width: 18px;
    height: 18px;
    opacity: 0.7;
  }

  /* Header testimonial */
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    background: #67b4eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .testimonial-info {
    flex: 1;
  }

  .testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
  }

  .testimonial-date {
    font-size: 11px;
    color: #888;
  }

  /* Rating */
  .testimonial-rating {
    font-size: 13px;
    letter-spacing: 2px;
    color: #f5b301;
    margin-bottom: 10px;
  }

  /* Teks testimonial */
  .testimonial-text {
    font-size: 13px;
    line-height: 1.55;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 850px) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 850px) {
  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-title:after {
    width: 50px;
    margin-top: 12px;
  }

  .testimonial-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .testimonial-track {
    gap: 16px;
    padding: 0 16px;
  }

  .testimonial-card {
    width: 300px;
    padding: 18px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 12px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (851px - 1024px) */
/* ============================================= */
@media screen and (min-width: 851px) and (max-width: 1024px) {
  .testimonial-title {
    font-size: 32px;
  }

  .testimonial-title:after {
    width: 70px;
    margin-top: 18px;
  }

  .testimonial-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .testimonial-track {
    gap: 24px;
    padding: 0 30px;
  }

  .testimonial-card {
    width: 350px;
    padding: 24px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - DAFTAR SECTION */
/* CENTER PAKSA - PASTI TENGAH */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Reset margin & padding */
  .daftar-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 50px 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* Container form - PAKSA CENTER */
  .daftar-container {
    max-width: 550px !important;
    width: 90% !important;
    margin: 0 auto !important;
    background: white !important;
    border-radius: 24px !important;
    padding: 32px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* Form */
  .daftar-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Form group */
  .form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .form-group label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .required {
    color: #f39c12 !important;
    font-size: 14px !important;
  }

  /* Input field */
  .form-group input,
  .form-group select {
    padding: 12px 14px !important;
    font-size: 14px !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 12px !important;
    font-family: inherit !important;
    background: white !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .form-group input:focus,
  .form-group select:focus {
    outline: none !important;
    border-color: #67b4eb !important;
    box-shadow: 0 0 0 3px rgba(103, 180, 235, 0.2) !important;
  }

  /* WA wrapper */
  .wa-wrapper {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 12px !important;
    background: white !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .wa-wrapper:focus-within {
    border-color: #67b4eb !important;
    box-shadow: 0 0 0 3px rgba(103, 180, 235, 0.2) !important;
  }

  .wa-kode {
    padding: 12px 10px !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    font-weight: 500 !important;
    background: #f1f5f9 !important;
    border-right: 1px solid #cbd5e0 !important;
    flex-shrink: 0 !important;
  }

  .wa-wrapper input {
    flex: 1 !important;
    border: none !important;
    padding: 12px 14px !important;
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .wa-wrapper input:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  /* Tombol submit */
  .btn-submit {
    background: #f39c12 !important;
    border: none !important;
    color: white !important;
    padding: 13px 20px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 4px !important;
    width: 100% !important;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3) !important;
    box-sizing: border-box !important;
  }

  .btn-submit:hover {
    background: #e67e22 !important;
    transform: translateY(-2px) !important;
  }

  /* Form note */
  .form-note {
    font-size: 11px !important;
    color: #e67e22 !important;
    text-align: center !important;
    margin-top: 4px !important;
    background: #fef9e6 !important;
    padding: 10px !important;
    border-radius: 12px !important;
    line-height: 1.5 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - PENGAJAR SECTION */
/* HORIZONTAL SCROLL - RAPI DI TABLET */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pengajar-section {
    width: 100%;
    margin: 60px 0;
    padding: 0;
  }

  .pengajar-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 40px;
    padding: 0 20px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .pengajar-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  /* Container slider - horizontal scroll */
  .slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px 0;
    cursor: grab;
  }

  .slider-container:active {
    cursor: grabbing;
  }

  /* Scrollbar styling */
  .slider-container::-webkit-scrollbar {
    height: 4px;
  }

  .slider-container::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
  }

  .slider-container::-webkit-scrollbar-thumb {
    background: #67b4eb;
    border-radius: 10px;
  }

  /* Track - horizontal scroll */
  .slider-track {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: max-content;
    padding: 0 20px;
  }

  /* Card pengajar - ukuran pas untuk tablet */
  .pengajar-card {
    width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  .pengajar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #67b4eb;
  }

  /* Foto pengajar */
  .pengajar-foto {
    width: 100%;
    height: 280px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 16px;
    background: #f0f0f0;
  }

  .pengajar-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .pengajar-card:hover .pengajar-foto img {
    transform: scale(1.05);
  }

  /* Nama pengajar */
  .pengajar-nama {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  /* Prestasi */
  .pengajar-prestasi {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Instansi */
  .pengajar-instansi {
    font-size: 11px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 850px) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 850px) {
  .pengajar-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .pengajar-title:after {
    width: 50px;
    margin-top: 12px;
  }

  .slider-track {
    gap: 18px;
    padding: 0 16px;
  }

  .pengajar-card {
    width: 260px;
    padding: 16px;
    border-radius: 18px;
  }

  .pengajar-foto {
    height: 260px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .pengajar-nama {
    font-size: 17px;
  }

  .pengajar-prestasi {
    font-size: 11px;
  }

  .pengajar-instansi {
    font-size: 10px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (851px - 1024px) */
/* ============================================= */
@media screen and (min-width: 851px) and (max-width: 1024px) {
  .pengajar-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .pengajar-title:after {
    width: 70px;
    margin-top: 18px;
  }

  .slider-track {
    gap: 28px;
    padding: 0 30px;
  }

  .pengajar-card {
    width: 300px;
    padding: 24px;
    border-radius: 24px;
  }

  .pengajar-foto {
    height: 300px;
    border-radius: 18px;
    margin-bottom: 18px;
  }

  .pengajar-nama {
    font-size: 20px;
  }

  .pengajar-prestasi {
    font-size: 13px;
  }

  .pengajar-instansi {
    font-size: 12px;
  }
}

/* ============================================= */
/* TABLET 768px KHUSUS (iPad Portrait) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .pengajar-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .pengajar-title:after {
    width: 45px;
    margin-top: 10px;
  }

  .slider-track {
    gap: 16px;
    padding: 0 14px;
  }

  .pengajar-card {
    width: 250px;
    padding: 14px;
  }

  .pengajar-foto {
    height: 250px;
  }
}

/* ============================================= */
/* TABLET (768px - 1024px) - FAQ SECTION RAPI */
/* ============================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .faq-section {
    width: 100%;
    margin: 60px 0;
    padding: 0 20px;
  }

  .faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0a2b44;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
  }

  /* Garis bawah judul */
  .faq-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #67b4eb;
    margin: 16px auto 0;
    border-radius: 10px;
  }

  /* FAQ Container */
  .faq-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* FAQ Item */
  .faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  .faq-item:hover {
    border-color: #67b4eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  /* FAQ Question */
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    background: white;
    transition: background 0.2s;
    gap: 12px;
  }

  .faq-question:hover {
    background: #f8fafe;
  }

  /* Icon panah */
  .faq-icon {
    font-size: 14px;
    color: #67b4eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  /* FAQ Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease-out,
      padding 0.3s ease;
    padding: 0 24px;
    background: #f9fbfe;
    border-top: none;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
    border-top: 1px solid #e2e8f0;
  }

  .faq-answer p {
    margin: 0;
    padding: 16px 0 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 850px) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 850px) {
  .faq-section {
    padding: 0 16px;
    margin: 50px 0;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .faq-title:after {
    width: 50px;
    margin-top: 12px;
  }

  .faq-container {
    max-width: 700px;
    gap: 14px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 15px;
  }

  .faq-icon {
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 1.55;
    padding-top: 14px;
  }
}

/* ============================================= */
/* TABLET LANDSCAPE (851px - 1024px) */
/* ============================================= */
@media screen and (min-width: 851px) and (max-width: 1024px) {
  .faq-section {
    padding: 0 30px;
    margin: 70px 0;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .faq-title:after {
    width: 70px;
    margin-top: 18px;
  }

  .faq-container {
    max-width: 850px;
    gap: 18px;
  }

  .faq-question {
    padding: 20px 28px;
    font-size: 17px;
  }

  .faq-icon {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 28px 22px 28px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 18px;
  }
}

/* ============================================= */
/* TABLET 768px KHUSUS (iPad Portrait) */
/* ============================================= */
@media screen and (min-width: 768px) and (max-width: 768px) {
  .faq-section {
    padding: 0 14px;
    margin: 45px 0;
  }

  .faq-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .faq-title:after {
    width: 45px;
    margin-top: 10px;
  }

  .faq-container {
    max-width: 650px;
    gap: 12px;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }

  .faq-answer p {
    font-size: 12px;
    padding-top: 12px;
  }
}

/* ============================================ */
/* TABLET (768px - 1024px) */
/* ============================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  
  .alasan-section {
    padding: 50px 4%;
  }
  
  .alasan-title {
    font-size: 28px;
    margin-bottom: 35px;
  }
  
  .alasan-container {
    flex-direction: column;
    gap: 35px;
  }
  
  /* VIDEO - Full width di tablet */
  .alasan-video {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
  
  .video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Tombol play lebih besar untuk tablet touch */
  .play-button-overlay {
    width: 70px !important;
    height: 70px !important;
    font-size: 30px !important;
  }
  
  /* Grid alasan jadi 2 kolom di tablet */
  .alasan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .alasan-card {
    padding: 20px;
  }
  
  .alasan-number {
    font-size: 26px;
  }
  
  .alasan-judul {
    font-size: 16px;
  }
  
  .alasan-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ============================================ */
/* MOBILE (max 767px) */
/* ============================================ */
@media (max-width: 767px) {
  
  .alasan-section {
    padding: 40px 4%;
  }
  
  .alasan-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .alasan-container {
    flex-direction: column;
    gap: 25px;
  }
  
  /* VIDEO - Full width di mobile */
  .alasan-video {
    width: 100%;
  }
  
  .video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
  
  .video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Tombol play di mobile (lebih kecil) */
  .play-button-overlay {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }
  
  /* Grid alasan jadi 1 kolom di mobile */
  .alasan-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .alasan-card {
    padding: 16px;
  }
  
  .alasan-number {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .alasan-judul {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .alasan-desc {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ============================================ */
/* MOBILE KECIL (max 480px) */
/* ============================================ */
@media (max-width: 480px) {
  
  .alasan-section {
    padding: 30px 3%;
  }
  
  .alasan-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .alasan-container {
    gap: 20px;
  }
  
  /* Video di mobile kecil */
  .video-wrapper {
    border-radius: 10px;
  }
  
  .play-button-overlay {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
  }
  
  /* Card alasan di mobile kecil */
  .alasan-card {
    padding: 14px;
  }
  
  .alasan-number {
    font-size: 20px;
  }
  
  .alasan-judul {
    font-size: 14px;
  }
  
  .alasan-desc {
    font-size: 12px;
  }
}

/* ============================================ */
/* TABLET LANDSCAPE (1024px ke atas dikit) */
/* ============================================ */
@media (min-width: 1024px) and (max-width: 1280px) {
  
  .alasan-container {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .alasan-video {
    flex: 0.9;
  }
  
  .video-wrapper {
    aspect-ratio: 16 / 9;
  }
  
  .play-button-overlay {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }
}

/* ============================================ */
/* MODAL VIDEO UNTUK TABLET & MOBILE */
/* ============================================ */
@media (max-width: 1024px) {
  
    .alasan-title {
    margin-bottom: 20px; /* Kurangi dari 50px jadi 20px */
  }
  
  .alasan-container {
    margin-top: 0; /* Biar nempel */
  }
  
  .video-modal {
    z-index: 9999;
  }
  
  .modal-content {
    width: 95%;
    max-width: 95%;
  }
  
  .modal-header {
    margin-bottom: 8px;
  }
  
  .close-modal {
    width: 40px;
    height: 40px;
    font-size: 28px;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .close-modal:active {
    background: #67b4eb;
    transform: scale(0.95);
  }
  
  .modal-content video {
    width: 100%;
    border-radius: 12px;
  }
}

/* ============================================ */
/* MODAL VIDEO UNTUK MOBILE KECIL */
/* ============================================ */
@media (max-width: 480px) {
  
  .modal-content {
    width: 98%;
  }
  
  .close-modal {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  
  .modal-header {
    margin-bottom: 5px;
  }
  
  .modal-content video {
    border-radius: 8px;
  }
}
/* ========== PROGRAM SECTION - HORIZONTAL SCROLL ========== */
.program-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 40px;
}

.program-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0a2b44;
  margin-bottom: 48px;
}

/* HORIZONTAL SCROLL - BISA DIGESER KE SAMPING */
.program-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  gap: 30px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 20px 4px;
  cursor: grab;
  align-items: flex-start; /* INI PENTING! card sejajar ke atas, bukan stretch */
}

.program-container:active {
  cursor: grabbing;
}

/* Scrollbar styling */
.program-container::-webkit-scrollbar {
  height: 6px;
}

.program-container::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.program-container::-webkit-scrollbar-thumb {
  background: #67b4eb;
  border-radius: 10px;
}

.program-container::-webkit-scrollbar-thumb:hover {
  background: #4a9fd4;
}

/* Card - ukuran tetap, tidak mengecil */
.program-card {
  background: white;
  border-radius: 10px;
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
  padding: 0 0 24px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Biarkan dropdown keluar */
  position: relative;
  background: white;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  border-color: #67b4eb;
}

/* FOTO */
.program-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 10px;
}

/* Konten dalam card (setelah foto) */
.program-card > :not(.program-img) {
  margin-left: 20px;
  margin-right: 20px;
}

.program-name {
  font-size: 18px;
  font-weight: 800;
  color: #1e3a5f;
  margin: 16px 0 8px 0;
  line-height: 1.4;
}

.program-price {
  font-size: 24px;
  font-weight: 800;
  color: #f31212;
  margin-bottom: 16px;
}

.program-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.btn-detail {
  background: #f0f6ff;
  border: none;
  color: #1e4a76;
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.btn-detail:hover {
  background: #e0ecfe;
  transform: scale(1.02);
}

.btn-detail .arrow {
  transition: transform 0.3s ease;
}

.btn-detail.active .arrow {
  transform: rotate(180deg);
}

.btn-daftar-program {
  background: #f39c12;
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.btn-daftar-program:hover {
  background: #e67e22;
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
}

.program-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: 0;
  border-top: none;
  position: relative;
  z-index: 10;
}

.program-dropdown.show {
  max-height: 300px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.program-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-dropdown li {
  font-size: 13px;
  padding: 6px 0;
  color: #4a5568;
  line-height: 1.5;
}

/* ========== RESPONSIVE TABLET ========== */
@media screen and (max-width: 1024px) {
  .program-section {
    padding: 0 20px;
  }
  
  .program-card {
    width: 280px;
    min-width: 280px;
  }
  
  .program-img {
    height: 220px;
  }
}

/* ========== RESPONSIVE HP ========== */
@media screen and (max-width: 768px) {
  .program-section {
    padding: 0 16px;
  }
  
  .program-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .program-container {
    gap: 20px;
  }
  
  .program-card {
    width: 260px;
    min-width: 260px;
  }
  
  .program-img {
    height: 180px;
  }
  
  .program-name {
    font-size: 16px;
  }
  
  .program-price {
    font-size: 18px;
  }
  
  .btn-detail, 
  .btn-daftar-program {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* ========== TABLET (768px - 1024px) - FOTO LEBIH TINGGI ========== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .program-section {
    margin: 50px auto;
    padding: 0 30px;
  }
  
  .program-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .program-card {
    width: 100%;
    padding: 0 0 20px 0;
    border-radius: 20px;
  }
  
  /* FOTO TABLET - DITINGGIKAN JADI 320px */
  .program-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .program-card > :not(.program-img) {
    margin-left: 18px;
    margin-right: 18px;
  }
  
  .program-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  
  .btn-detail, 
  .btn-daftar-program {
    padding: 10px 8px;
    font-size: 12px;
    white-space: nowrap;
    flex: 1;
  }
  
  .program-name {
    font-size: 16px;
    margin-top: 14px;
  }
  
  .program-price {
    font-size: 20px;
    margin-bottom: 14px;
  }
}

/* ========== TABLET LANDSCAPE (901px - 1024px) ========== */
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .program-container {
    max-width: 900px;
    gap: 30px;
  }
  
  .program-img {
    height: 320px;
  }
  
  .btn-detail, 
  .btn-daftar-program {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* ========== TABLET PORTRAIT (768px - 820px) ========== */
@media screen and (min-width: 768px) and (max-width: 820px) {
  .program-section {
    padding: 0 20px;
  }
  
  .program-container {
    gap: 20px;
  }
  
  .program-img {
    height: 300px;
  }
  
  .program-card > :not(.program-img) {
    margin-left: 14px;
    margin-right: 14px;
  }
  
  .btn-detail, 
  .btn-daftar-program {
    font-size: 11px;
    padding: 8px 6px;
    white-space: normal;
  }
  
  .program-name {
    font-size: 14px;
    margin-top: 12px;
  }
  
  .program-price {
    font-size: 18px;
  }
}

/* ========== HP (max 767px) - VERTICAL LAYOUT (1 KOLOM KE BAWAH) ========== */
@media screen and (max-width: 767px) {
  .program-section {
    padding: 0 20px;
    margin: 40px auto;
  }
  
  .program-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  /* VERTICAL LAYOUT - 1 kolom ke bawah, BUKAN HORIZONTAL SCROLL */
  .program-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow-x: visible;
    padding: 0;
  }
  
  .program-card {
    width: 100%;
    max-width: 350px;
    min-width: auto;
    flex-shrink: 1;
    padding: 0 0 16px 0;
    border-radius: 18px;
  }
  
  /* FOTO HP - 260px */
  .program-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin: 0;
    padding: 0;
  }
  
  .program-card > :not(.program-img) {
    margin-left: 16px;
    margin-right: 16px;
  }
  
  .program-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-detail, 
  .btn-daftar-program {
    font-size: 13px;
    padding: 10px 14px;
  }
  
  .program-name {
    font-size: 16px;
    margin-top: 14px;
  }
  
  .program-price {
    font-size: 20px;
    margin-bottom: 14px;
  }
}

/* ========== HP KECIL (max 480px) - TETAP 260px ========== */
@media screen and (max-width: 480px) {
  .program-card {
    max-width: 320px;
    border-radius: 16px;
  }
  
  /* FOTO HP KECIL - TETAP 260px */
  .program-img {
    height: 260px;
  }
  
  .program-card > :not(.program-img) {
    margin-left: 14px;
    margin-right: 14px;
  }
  
  .program-name {
    font-size: 15px;
    margin-top: 12px;
  }
  
  .program-price {
    font-size: 18px;
  }
  
  .btn-detail, 
  .btn-daftar-program {
    font-size: 12px;
    padding: 9px 12px;
  }
}

/* ========== HP SUPER KECIL (max 375px) - TETAP 260px ========== */
@media screen and (max-width: 375px) {
  .program-card {
    max-width: 100%;
  }
  
  /* FOTO HP SUPER KECIL - TETAP 260px */
  .program-img {
    height: 260px;
  }
  
  .program-name {
    font-size: 14px;
  }
  
  .program-price {
    font-size: 16px;
  }
}

/* ============================================= */
/* TABLET PORTRAIT (768px - 900px) - TEKS LEBIH KECIL */
/* ============================================= */

@media screen and (min-width: 768px) and (max-width: 900px) {
  /* Perkecil teks di samping logo */
  .kampung-inggris {
    font-size: 15px;
  }
  
  .learning {
    font-size: 11px;
  }
  
  /* Kurangi jarak antara logo dan teks */
  .logo-container {
    gap: 8px;
  }
}


/* HAPUS RUANG PUTIH DI BAWAH COPYRIGHT - TAPI TIDAK TENGGELAM */
.footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-bottom p {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important; /* ← kasih padding 10px biar tidak tenggelam */
}

footer {
    margin-bottom: 0 !important;
}

body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.footer-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  transform: translateY(-4px);
  background: #027c76;
}

.footer-address,
.footer-status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.footer-address i,
.footer-status i {
  margin-top: 5px;
  color: #027c76;
}

/* TELEPON PALING BAWAH */
.footer-phone-bottom {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-phone-bottom:hover {
  color: #027c76;
}

/* =========================
   TABLET VERSION
========================= */
@media (max-width: 992px) {
  .footer-col {
    width: 100%;
  }

  .footer-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .footer-address {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-socials {
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
  }

  .footer-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .footer-status {
    font-size: 15px;
    margin-top: 10px;
  }

  .footer-phone-bottom {
    margin-top: 20px;
    font-size: 15px;
  }
}

/* =========================
   MOBILE VERSION
========================= */
@media (max-width: 576px) {
  .footer-col {
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .footer-address {
    font-size: 14px;
    line-height: 1.7;
    gap: 8px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-address i {
    margin-top: 0;
    font-size: 15px;
  }

  .footer-socials {
    justify-content: center;
    gap: 12px;
    margin: 18px 0;
    flex-wrap: wrap;
  }

  .footer-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
    border-radius: 14px;
  }

  .footer-icon:hover {
    transform: translateY(-2px);
  }

  .footer-status {
    font-size: 14px;
    line-height: 1.6;
    gap: 8px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-status i {
    margin-top: 0;
    font-size: 15px;
  }

  .footer-phone-bottom {
    margin-top: 18px;
    font-size: 14px;
    gap: 8px;
    justify-content: center;
  }

  .footer-phone-bottom i {
    font-size: 14px;
  }
}

.banner-photo-only {
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  margin-bottom: 25px;
  
  /* NUKE EFFECT: Membunuh semua sisa bayangan dan garis */
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  outline: none !important;
}

.banner-img {
  width: 100%;
  display: block;
  height: auto;
  
  /* Jaga-jaga kalau gambarnya yang kena styling bawaan */
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  background: transparent !important;
}

/* Posisi Teks dalam Satu Baris di Area Biru */
.bouncing-text-single-line {
  position: absolute;
  top: 60%;
  left: 38%; /* Posisi awal teks di area biru */
  transform: translateY(-50%);
  display: flex;
  white-space: nowrap; /* KUNCI: Memaksa teks tetap dalam satu baris */
  gap: 8px; /* Jarak antar kata */
  
  /* Styling teks */
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 1.8rem; /* Ukuran teks disesuaikan untuk satu baris */
  font-weight: 800;
  color: #ffffff;
  pointer-events: none; /* Biar teks tidak mengganggu saat diklik */
}

/* Efek Lompat Per Kata */
.bouncing-text-single-line span {
  display: inline-block;
  animation: lompatTeksSingleLine 1.4s infinite ease-in-out;
}

/* Delay Gelombang Animasi */
.bouncing-text-single-line span:nth-child(1) { animation-delay: 0s; }
.bouncing-text-single-line span:nth-child(2) { animation-delay: 0.15s; }
.bouncing-text-single-line span:nth-child(3) { animation-delay: 0.3s; }

/* Keyframes Animasi Lompat */
@keyframes lompatTeksSingleLine {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px); /* Ketinggian lompat disesuaikan */
  }
}

@media (max-width: 768px) {
  .bouncing-text-single-line {
    font-size: 1.1rem; 
    
    /* Atur juga di sini khusus buat tampilan HP */
    left: 40%; /* Geser kiri untuk HP */
    top: 60%;  /* Geser bawah untuk HP */
    
    gap: 4px;
  }
  /* ... */
}

@media (max-width: 412px) {
  .bouncing-text-single-line {
    font-size: 1rem; 
    
    /* Atur juga di sini khusus buat tampilan HP */
    left: 40%; /* Geser kiri untuk HP */
    top: 60%;  /* Geser bawah untuk HP */
    
    gap: 4px;
  }
  /* ... */
}

/* =========================================
   WhatsApp Floating Button 
========================================= */
.wa-float {
  position: fixed;
  bottom: 30px; /* Jarak dari bawah */
  right: 30px; /* Jarak dari kanan */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Warna hijau khas WhatsApp */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999; /* Pastikan selalu di atas elemen lain */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  /* Tambahan animasi denyut (pulse) biar lebih menarik */
  animation: pulse-wa 2s infinite; 
}

.wa-float:hover {
  background-color: #128c7e; /* Hijau lebih gelap saat di-hover */
  color: #FFF;
  transform: scale(1.1); /* Membesar sedikit saat kursor diarahkan */
}

/* Animasi Pulse (Denyut) */
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Penyesuaian ukuran untuk tampilan Mobile (Layar Kecil) */
@media screen and (max-width: 768px) {
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }
}

/* Google Review Widget Styles */
.google-review-widget {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Arial, sans-serif; /* Opsional, sesuaikan font body */
}

.gr-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gr-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gr-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fcfcfc; /* Sesuaikan dengan warna teks footer kamu, misal #fff jika gelap */
}

.gr-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.gr-score {
  color: #ff9800; /* Warna oranye khas Google Rating */
  font-weight: bold;
  font-size: 1rem;
}

.gr-stars i {
  color: #ffb300;
  font-size: 0.9rem;
}

.gr-reviews-count {
  margin: 4px 0 0 0;
  font-size: 0.85rem;
  color: #666; /* Ubah ke warna terang jika background footer gelap */
}

.gr-powered {
  margin: 0;
  font-size: 0.85rem;
  color: #666; /* Ubah ke warna terang jika background footer gelap */
}

/* Warna Teks Google */
.g-blue { color: #4285F4; font-weight: bold; }
.g-red { color: #EA4335; font-weight: bold; }
.g-yellow { color: #FBBC05; font-weight: bold; }
.g-green { color: #34A853; font-weight: bold; }

/* Button "review us on Google" */
.gr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #4285F4;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  width: fit-content;
  margin-top: 5px;
  transition: background-color 0.3s ease;
}

.gr-button:hover {
  background-color: #3367d6;
  color: #ffffff;
}

.gr-button img {
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  padding: 2px;
}