* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter", sans-serif;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

:root {
  --primary-blue: #20639b;
  --hover-blue: #1a4e7f;
  --text-gray: #64748b;
  --dark-slate: #1e293b;
}

/* SECTION COLORED */
.bg-blue-slanted {
  position: relative;
  background: transparent !important;
  z-index: 1;
}

.bg-blue-slanted::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  /* Mengatur ketebalan area biru (jarak tengah) */
  top: 7.5%;
  height: 85%;
  background-color: #1a5f9c;
  /* Efek miring ramping */
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  z-index: -1;
}

/* --- 2. SEKSI DENGAN BACKGROUND DATAR (FLAT) --- */
.bg-blue-flat {
  background-color: #1a5f9c !important;
  position: relative;
}

/* --- 3. TYPOGRAPHY & HIGHLIGHT (SEMUA SEKSI BIRU) --- */
.bg-blue-slanted h2,
.bg-blue-flat h2,
.bg-blue-slanted .section-title-large,
.bg-blue-flat .section-title-large,
.bg-blue-slanted p,
.bg-blue-flat p,
.bg-blue-slanted .ps-lead,
.bg-blue-flat .ps-lead,
.bg-blue-slanted .cb-item-title {
  /* Tambahkan ini agar judul slider putih */
  color: #ffffff !important;
}

.bg-blue-slanted .highlight,
.bg-blue-flat .highlight,
.bg-blue-slanted .cb-item-title .highlight {
  color: #ffffff !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
}

/* Tambahan: Pastikan highlight di dalam slider juga jadi putih */
.bg-blue-slanted .cb-item-title .highlight {
  color: #ffffff !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

/* --- 4. BADGE (PS-BADGE) --- */
.bg-blue-slanted .ps-badge,
.bg-blue-flat .ps-badge,
.ps-badge {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  display: inline-block;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

/* --- 5. NAVIGASI ANGKA (SLIDER) --- */
.nav-line-base {
  background: rgba(255, 255, 255, 0.2) !important;
  z-index: 1 !important; /* Garis di belakang */
}

.nav-btns-wrapper {
  position: relative;
  z-index: 2 !important; /* Angka di depan */
}

.bg-blue-slanted .cb-nav-btn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

.bg-blue-slanted .cb-nav-btn.active {
  background: #ffffff !important;
  color: #1a5f9c !important;
  border-color: #ffffff !important;
}

/* --- 6. TOMBOL PANAH (CONTROLS) --- */
.bg-blue-slanted .cb-arrow,
.next-mentor,
.prev-mentor {
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  background: transparent !important;
}

.bg-blue-slanted .cb-arrow:hover,
.nav-btn:hover {
  background: #000000 !important; /* Hitam saat hover */
  color: #ffffff !important;
  border-color: #000000 !important;
}

/* --- 7. KARTU (METHOD & MENTOR) --- */
.method-card {
  background: #ffffff !important;
  border-radius: 20px;
}

.method-card h3 {
  color: #1a5f9c !important;
}

.method-card p {
  color: #4a5568 !important;
}

.card-number {
  color: rgba(26, 95, 156, 0.1) !important; /* Angka transparan biru */
}

/* --- 8. VISUAL DEKORASI (GAMBAR & FRAME) --- */
.bg-blue-slanted .main-frame,
.testi-main-frame {
  border: 10px solid #ffffff; /* Frame putih */
}

.bg-blue-slanted .floating-deco-img {
  border: 6px solid #ffffff !important; /* Border dekorasi putih */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* --- 9. FOOTER & OFFERING --- */
.main-footer.bg-blue-flat {
  padding: 60px 0 30px;
}

.main-footer.bg-blue-flat a,
.main-footer.bg-blue-flat span {
  color: #ffffff !important;
}

.main-footer.bg-blue-flat a:hover {
  color: #000000 !important;
}

/* KONTAINER CARD REVEAL */
.reveal {
  opacity: 0 !important;
  transform: translateY(40px) scale(0.98); /* Muncul dari bawah + sedikit zoom */
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
  will-change: opacity, transform;
  visibility: hidden; /* Mencegah elemen bisa diklik sebelum muncul */
}

/* Saat elemen masuk ke layar (ditrigger oleh JS) */
.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  visibility: visible;
}

/* Variasi: Reveal dari Kiri */
.reveal-left {
  opacity: 0 !important;
  transform: translateX(-50px);
}
.reveal-left.active {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Variasi: Reveal dari Kanan */
.reveal-right {
  opacity: 0 !important;
  transform: translateX(50px);
}
.reveal-right.active {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.active.reveal:nth-child(2) {
  transition-delay: 0.2s !important;
}
.active.reveal:nth-child(3) {
  transition-delay: 0.4s !important;
}
.active.reveal:nth-child(4) {
  transition-delay: 0.6s !important;
}

@media (max-width: 768px) {
  .bg-blue-slanted::before {
    top: 4%; /* Turunkan start area biru agar konten atas tidak terpotong */
    height: 92%; /* Perpanjang sedikit agar bawah juga tidak terpotong */
    clip-path: polygon(
      0 2%,
      100% 0,
      100% 98%,
      0 100%
    ); /* Miring lebih landai */
  }
}

@media (max-width: 480px) {
  .bg-blue-slanted::before {
    top: 3%;
    height: 94%;
    clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%);
  }
}

/* NAVBAR */
/* --- 1. NAVBAR WRAPPER & CONTAINER --- */
.navbar-floating {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1100px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-container {
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* --- 2. NAV LINKS (DESKTOP) --- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #20639b;
}

/* Tombol Join di dalam UL (HANYA MUNCUL DI MOBILE) */
.nav-links .btn-join {
  display: none; /* Sembunyi di Desktop */
}

/* --- 3. BUTTON JOIN (UTAMA) --- */
.btn-join {
  background: #20639b;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-join:hover {
  background: #1a4f7c;
  transform: scale(1.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* --- 4. HAMBURGER TOGGLE --- */
.mobile-toggle {
  display: none;
  cursor: pointer;
}

.mobile-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background-color: #20639b;
  transition: 0.3s;
}

/* --- TABLET & MOBILE: max-width 768px --- */
@media (max-width: 768px) {
  .navbar-floating {
    top: 15px;
    width: 92%;
  }

  .nav-container {
    padding: 10px 18px;
    border-radius: 60px;
    flex-wrap: wrap;
    position: relative;
    transition: border-radius 0.35s ease;
  }

  .logo-img {
    height: 32px;
  }

  /* --- DROPDOWN ANIMASI --- */
  .nav-links {
    display: flex; /* Tetap flex, tapi dikontrol dengan opacity & height */
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 0 0 0 0;
    margin-top: 0;
    border-top: 1px solid transparent;
    order: 3;

    /* State awal: tersembunyi */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;

    /* Transisi smooth */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease,
      padding 0.35s ease, margin 0.35s ease, border-color 0.3s ease;
  }

  /* State aktif: tampil dengan animasi */
  .nav-links.mobile-active {
    max-height: 400px; /* Nilai lebih besar dari konten aktual */
    opacity: 1;
    pointer-events: auto;
    padding: 12px 0 6px 0;
    margin-top: 8px;
    border-top-color: rgba(0, 0, 0, 0.07);
  }

  .nav-links li {
    width: 100%;

    /* Animasi masuk per item */
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  /* Saat aktif, tiap item muncul satu per satu (stagger) */
  .nav-links.mobile-active li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.05s;
  }
  .nav-links.mobile-active li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
  }
  .nav-links.mobile-active li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
  }
  .nav-links.mobile-active li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
  }
  .nav-links.mobile-active li:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
  }
  .nav-links.mobile-active li:nth-child(6) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
  }

  .nav-links a {
    display: block;
    padding: 10px 6px;
    font-size: 15px;
    color: #333;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-links a:hover {
    background: rgba(32, 99, 155, 0.07);
    color: #20639b;
    padding-left: 12px;
  }

  .nav-links .btn-join {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    justify-content: center;
  }

  .nav-actions .btn-join {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* --- ANIMASI HAMBURGER → X --- */
  .mobile-toggle .bar {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease,
      width 0.3s ease;
    transform-origin: center;
  }

  .mobile-toggle.is-active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .mobile-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Border radius navbar saat menu terbuka */
  .nav-container:has(.nav-links.mobile-active) {
    border-radius: 24px;
  }
}

/* --- MOBILE KECIL: max-width 480px --- */
@media (max-width: 480px) {
  .navbar-floating {
    top: 10px;
    width: 94%;
  }

  .nav-container {
    padding: 8px 14px;
  }

  .logo-img {
    height: 28px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 9px 6px;
  }

  .nav-links .btn-join {
    font-size: 14px;
    padding: 11px 20px;
  }

  .mobile-toggle .bar {
    width: 20px;
  }
}

/* HERO SECTION */
.hero {
  height: 100vh;
  width: 100%;
  background-image: url("/img/main-hero.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center; /* Menjaga konten di tengah secara vertikal */
  padding-top: 80px; /* Ruang agar tidak tertutup floating navbar */
  overflow: hidden;
}

/* Overlay Gradasi yang Halus */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* Dekorasi Blob Organik di Background */
.bg-blob-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(32, 99, 155, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  top: -10%;
  right: -5%;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  animation: pulseBlob 10s infinite alternate;
}

@keyframes pulseBlob {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* --- LAYOUT CONTENT --- */
.hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* --- SISI KIRI (TYPOGRAPHY) --- */
.left-side {
  flex: 1;
}

.headline {
  color: white;
  font-size: clamp(45px, 6vw, 75px); /* Font adaptif */
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: -2px;
}

.text-highlight {
  color: #faa23a; /* Warna oranye khas Carabicara */
  display: block;
}

/* Stats Card Glassmorphism */
.stats-container {
  display: flex;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 20px;
  border-radius: 30px;
  text-align: center;
  min-width: 160px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.stat-icon-img {
  height: 35px;
  margin-bottom: 12px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.stat-text h2 {
  color: white;
  font-size: 36px;
  font-weight: 900;
  margin: 0;
}

.stat-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- SISI KANAN (FLOATING SLIDER) --- */
.right-side {
  flex: 0 0 auto;
}

.floating-glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 40px;
  width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: floatingEffect 5s ease-in-out infinite;
}

@keyframes floatingEffect {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.slider-container {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 25px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination Dots */
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.dot.active {
  width: 35px;
  border-radius: 20px;
  background: #20639b;
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 30px;
    width: 92%;
  }

  .floating-glass-box {
    width: 300px;
  }

  .stat-card {
    min-width: 130px;
    padding: 20px 15px;
  }

  .stat-text h2 {
    font-size: 28px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 60px;
    align-items: flex-start;
    overflow: hidden;
  }

  .bg-blob-decoration {
    width: 300px;
    height: 300px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 88%;
    text-align: center;
    overflow: hidden;
  }

  .left-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .headline {
    font-size: clamp(28px, 6.5vw, 52px);
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    text-align: center;
  }

  .stats-container {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .stats-container::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    min-width: 130px;
    flex-shrink: 0;
    padding: 18px 14px;
    border-radius: 24px;
  }

  .stat-card:hover {
    transform: none;
  }

  .stat-icon-img {
    height: 28px;
    margin-bottom: 8px;
  }

  .stat-text h2 {
    font-size: 26px;
  }

  .stat-text p {
    font-size: 11px;
  }

  .right-side {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .floating-glass-box {
    width: min(320px, 85vw);
    padding: 16px;
    border-radius: 32px;
    animation: floatingEffectMobile 6s ease-in-out infinite;
  }

  @keyframes floatingEffectMobile {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .slider-container {
    border-radius: 20px;
  }

  .pagination {
    margin-top: 14px;
    gap: 8px;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 48px;
  }

  .hero-content {
    gap: 28px;
    width: 90%;
  }

  .headline {
    font-size: clamp(24px, 5.5vw, 36px);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
  }

  .stats-container {
    gap: 10px;
    justify-content: flex-start;
    padding-left: 4px;
  }

  .stat-card {
    min-width: 115px;
    padding: 16px 12px;
    border-radius: 20px;
  }

  .stat-text h2 {
    font-size: 22px;
  }

  .stat-text p {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .floating-glass-box {
    width: 92vw;
    padding: 12px;
    border-radius: 28px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 28px;
  }
}

/* Bagian Partner dari carabicara */
.partners-section {
  width: 100%;
  padding: 0 5%;
  background-color: transparent; /* Biarkan BG Hero atau section bawah terlihat */
  margin-top: -60px; /* Overlap ke arah Hero Section */
  position: relative;
  z-index: 20;
}

.partners-wrapper {
  background: #ffffff;
  display: flex;
  align-items: center;
  height: 100px;
  border-radius: 100px; /* Bentuk Pill-shaped sesuai navbar */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(238, 238, 238, 0.5);
}

/* SISI KIRI: Main Partner */
.main-partner {
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fbfbfb;
  border-right: 1px solid #eee;
  white-space: nowrap;
}

.partner-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-weight: 700;
  margin-bottom: 5px;
}

.main-partner img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* SISI KANAN: Marquee */
.other-partners {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 60px; /* Jarak antar logo partner */
  padding: 0 30px;
}

.marquee-group img {
  height: 30px;
  width: auto;
  opacity: 0.5;
  transition: all 0.3s ease;
  filter: grayscale(
    100%
  ); /* Membuat logo grayscale agar lebih estetik & seragam */
}

.marquee-group img:hover {
  opacity: 1;
  filter: grayscale(0%); /* Muncul warna saat dihover */
}

/* Keyframes */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- TABLET: max-width 1024px --- */
@media (max-width: 1024px) {
  .partners-section {
    padding: 0 4%;
    margin-top: -50px;
  }

  .partners-wrapper {
    height: 90px;
  }

  .main-partner {
    padding: 0 28px;
  }

  .main-partner img {
    height: 45px;
  }

  .marquee-group {
    gap: 40px;
    padding: 0 20px;
  }

  .marquee-group img {
    height: 26px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .partners-section {
    padding: 0 5%;
    margin-top: -40px;
  }

  /* Ubah dari pill horizontal → card vertikal */
  .partners-wrapper {
    flex-direction: column;
    height: auto;
    border-radius: 28px;
    overflow: hidden;
  }

  /* Main partner full width di atas */
  .main-partner {
    width: 100%;
    padding: 18px 28px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    border-right: none;
    border-bottom: 1px solid #eee;
    height: auto;
  }

  .partner-label {
    margin-bottom: 0;
    white-space: nowrap;
  }

  .main-partner img {
    height: 36px;
  }

  /* Marquee di bawah, full width */
  .other-partners {
    width: 100%;
    padding: 16px 0;
  }

  .marquee-group {
    gap: 36px;
    padding: 0 20px;
  }

  .marquee-group img {
    height: 24px;
  }

  /* Hover tidak relevan di touch, matikan */
  .marquee-group img:hover {
    opacity: 0.5;
    filter: grayscale(100%);
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .partners-section {
    padding: 0 4%;
    margin-top: -30px;
  }

  .partners-wrapper {
    border-radius: 22px;
  }

  .main-partner {
    padding: 14px 20px;
    gap: 10px;
  }

  .partner-label {
    font-size: 9px;
  }

  .main-partner img {
    height: 30px;
  }

  .other-partners {
    padding: 14px 0;
  }

  .marquee-group {
    gap: 28px;
    padding: 0 16px;
  }

  .marquee-group img {
    height: 20px;
  }

  /* Percepat marquee sedikit di mobile agar tidak terasa lambat */
  .marquee-content {
    animation-duration: 20s;
  }
}

/* PROBLEM SECTION */
.why-ps-section {
  padding: 120px 20px; /* Standar Desktop Padding */
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px; /* Standard column gap */
}

/* --- VISUAL STACK --- */
.ps-visual {
  flex: 1;
  position: relative;
  height: 480px;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-item {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(32, 99, 155, 0.1);
  border: 8px solid #ffffff;
  background: #ffffff;
  transition: transform 0.5s ease;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Koordinat Item (Tumpukan) */
.item-1 {
  width: 280px;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-2deg);
}
.item-2 {
  width: 260px;
  height: 320px;
  top: 40px;
  left: 180px;
  z-index: 2;
  transform: rotate(4deg);
}
.item-3 {
  width: 220px;
  height: 220px;
  bottom: 20px;
  left: 60px;
  z-index: 1;
  opacity: 0.6;
  transform: rotate(-6deg);
}

.ps-accent-box {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--primary-blue);
  opacity: 0.05;
  border-radius: 30px;
  bottom: 60px;
  right: 40px;
  z-index: 0;
}

/* --- CONTENT SIDE --- */
.ps-content {
  flex: 1.2;
}

.ps-badge {
  display: inline-block;
  background: rgba(32, 99, 155, 0.08);
  color: var(--primary-blue);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title-large {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark-slate);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title-large .highlight {
  color: var(--primary-blue);
}

.ps-lead {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-blue);
  padding-left: 20px;
}

/* PROBLEM GRID (2-Col) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.problem-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.problem-item i {
  width: 38px;
  height: 38px;
  background: rgba(32, 99, 155, 0.05);
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.problem-info h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-slate);
  margin-bottom: 4px;
}

.problem-info p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}

.no-wrap {
  white-space: nowrap;
  font-weight: 700;
  color: var(--primary-blue);
}

/* CTA */
.ps-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ps-cta:hover {
  background: var(--hover-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(32, 99, 155, 0.2);
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .why-ps-section {
    padding: 80px 20px;
  }

  .ps-container {
    gap: 40px;
  }

  .ps-visual {
    height: 400px;
  }

  .item-1 {
    width: 230px;
    height: 310px;
  }

  .item-2 {
    width: 210px;
    height: 260px;
    left: 140px;
  }

  .item-3 {
    width: 180px;
    height: 180px;
  }

  .section-title-large {
    font-size: 30px;
  }

  .ps-lead {
    font-size: 15px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .why-ps-section {
    padding: 60px 20px;
  }

  /* Stack jadi satu kolom, konten dulu baru visual */
  .ps-container {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: stretch;
  }

  /* --- IMAGE STACK: disederhanakan jadi overlap ringan --- */
  .ps-visual {
    width: 100%;
    height: 260px;
    flex: none;
  }

  .image-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
  }

  /* Reset semua item, susun ulang secara manual */
  .image-item {
    position: absolute;
    border: 5px solid #fff;
    border-radius: 18px;
  }

  .item-1 {
    width: 180px;
    height: 220px;
    top: 10px;
    left: 50%;
    transform: translateX(-110%) rotate(-3deg);
    z-index: 3;
  }

  .item-2 {
    width: 170px;
    height: 200px;
    top: 20px;
    left: 50%;
    transform: translateX(10%) rotate(3deg);
    z-index: 2;
  }

  /* Sembunyikan item-3 & accent-box di mobile agar tidak crowded */
  .item-3 {
    display: none;
  }

  .ps-accent-box {
    display: none;
  }

  /* --- CONTENT SIDE --- */
  .ps-content {
    flex: none;
    width: 100%;
  }

  .section-title-large {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .ps-lead {
    font-size: 14px;
  }

  /* Problem grid tetap 2 kolom di tablet */
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
  }

  .problem-info h4 {
    font-size: 13px;
  }

  .problem-info p {
    font-size: 12px;
  }

  .ps-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .ps-cta:hover {
    transform: none;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .why-ps-section {
    padding: 48px 16px;
  }

  .ps-container {
    gap: 30px;
  }

  .ps-visual {
    height: 220px;
  }

  .item-1 {
    width: 150px;
    height: 185px;
    transform: translateX(-105%) rotate(-3deg);
  }

  .item-2 {
    width: 145px;
    height: 172px;
    transform: translateX(8%) rotate(3deg);
  }

  .ps-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .section-title-large {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .ps-lead {
    font-size: 13px;
    padding-left: 14px;
    margin-bottom: 24px;
  }

  /* Problem grid jadi 1 kolom di mobile kecil */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .problem-item i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .problem-info h4 {
    font-size: 13px;
  }

  .problem-info p {
    font-size: 12px;
  }
}

/* WHY SECTION */
/* --- SECTION UTAMA --- */
.why-cb-section {
  padding: 160px 20px 100px; /* Padding atas diperlebar agar tidak mepet header */
  position: relative;
  overflow: hidden;
  background-color: #1a5f9c; /* Biru CaraBicara sesuai gambar */
  z-index: 1;
}

.cb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* --- SISI KIRI: CONTENT --- */
.cb-left-content {
  flex: 1;
  position: relative;
  z-index: 5;
}

/* --- NAVIGASI NOMOR (PERBAIKAN TOTAL) --- */
.cb-navigation {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 450px;
  height: 50px;
}

.nav-btns-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px; /* Jarak rapat antar angka saat berjejer */
  z-index: 2;
  position: relative;
  /* Membuat angka meluncur halus saat posisinya berpindah di DOM */
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-line-base {
  /* Diubah dari absolute ke flex agar bisa mendorong angka */
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);

  /* flex-grow: 1 menciptakan 'celah' dinamis yang meluncur */
  flex-grow: 1;
  min-width: 40px;

  /* Animasi saat garis memanjang/mengerut */
  transition: flex-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease,
    margin 0.5s ease;
  pointer-events: none;
}

.cb-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;

  /* Mencegah angka menjadi gepeng saat didorong garis */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cb-nav-btn.active {
  background: #ffffff !important;
  color: #1a5f9c !important; /* Biru menyesuaikan background */
  border-color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- SLIDER TEKS --- */
.cb-text-slider {
  overflow: hidden;
  margin-bottom: 35px;
  width: 100%;
}

.cb-text-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.cb-text-item {
  min-width: 100%;
}

.cb-item-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* --- PANAH (ARROW) --- */
.cb-arrow-controls {
  display: flex;
  gap: 15px;
}

.cb-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cb-arrow:hover {
  background: #ffffff;
  color: #1a5f9c;
  border-color: #ffffff;
}

/* --- SISI KANAN: VISUAL --- */
.cb-right-visual {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.landscape-stack {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 400px;
}

.main-frame {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden; /* Agar gambar tidak meluber saat slide */
  position: relative;
  z-index: 3;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 8px solid #ffffff;
  background: #ffffff;
}

.cb-image-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.cb-image-slide {
  min-width: 100%;
  height: 100%;
}

.cb-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DEKORASI (Floating di Atas Bingkai) */
.floating-deco-img {
  position: absolute;
  width: 260px;
  height: 170px;
  top: -50px; /* Melayang keluar bingkai utama */
  right: -30px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 4;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: floatAnim 6s ease-in-out infinite;
}

.floating-deco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .why-cb-section {
    padding: 120px 20px 80px;
  }

  .cb-container {
    gap: 40px;
  }

  .landscape-stack {
    height: 340px;
  }

  .floating-deco-img {
    width: 200px;
    height: 130px;
    right: -15px;
    top: -35px;
  }

  .cb-item-title {
    font-size: 28px;
  }

  .cb-navigation {
    max-width: 380px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .why-cb-section {
    padding: 80px 20px 60px;
  }

  /* Stack jadi satu kolom, visual di bawah */
  .cb-container {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  /* --- SISI KIRI --- */
  .cb-left-content {
    width: 100%;
  }

  .cb-navigation {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .cb-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .cb-item-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  /* ps-lead sudah di-style di problem section, cukup sesuaikan margin */
  .cb-text-item .ps-lead {
    font-size: 14px;
    margin-bottom: 0;
  }

  .cb-text-slider {
    margin-bottom: 24px;
  }

  .cb-arrow {
    width: 44px;
    height: 44px;
  }

  .cb-arrow:hover {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* --- SISI KANAN --- */
  .cb-right-visual {
    width: 100%;
    justify-content: center;
  }

  .landscape-stack {
    width: 100%;
    max-width: 100%;
    height: 260px;
  }

  .main-frame {
    border-radius: 22px;
    border-width: 6px;
  }

  /* Floating deco tetap ada tapi lebih kecil & tidak terlalu keluar */
  .floating-deco-img {
    width: 150px;
    height: 100px;
    top: -24px;
    right: -8px;
    border-width: 4px;
    border-radius: 14px;
    /* Kurangi animasi float agar tidak terlalu mengganggu */
    animation: floatAnimMobile 6s ease-in-out infinite;
  }

  @keyframes floatAnimMobile {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .cb-accent-circle {
    display: none;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .why-cb-section {
    padding: 60px 16px 48px;
  }

  .cb-container {
    gap: 30px;
  }

  .cb-navigation {
    margin-bottom: 24px;
    height: 44px;
  }

  .cb-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .nav-btns-wrapper {
    gap: 8px;
  }

  .cb-item-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .cb-text-item .ps-lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .cb-text-slider {
    margin-bottom: 20px;
  }

  .cb-arrow-controls {
    gap: 12px;
  }

  .cb-arrow {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .landscape-stack {
    height: 220px;
  }

  .main-frame {
    border-radius: 18px;
    border-width: 5px;
  }

  .floating-deco-img {
    width: 120px;
    height: 80px;
    top: -18px;
    right: -4px;
    border-width: 3px;
    border-radius: 12px;
  }
}

/* COURSES SECTION */
.horizontal-scroll-wrapper {
  position: relative;
  /* height: 300vh; */
  background-color: #ffffff;
}

.horizontal-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  z-index: 10;
}

.horizontal-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#f1f5f9 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.programs-horizontal-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 8vw;
  gap: 30px;
  width: max-content;
  align-items: center;
  will-change: transform;
  position: relative;
  z-index: 2;
}

/* --- INTRO BLOCK --- */
.intro-block {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 20px;
}

.ps-badge {
  background: #f1f5f9;
  color: #1a5f9c;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  width: fit-content;
}

.section-title-large {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: #1e293b;
}

.section-title-large .highlight {
  color: #1a5f9c;
}

.ps-lead {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
}

/* --- PROGRAM NODE (CARD) --- */
.program-node {
  flex: 0 0 280px;
  position: relative;
  margin-top: 0 !important;
  transform: none !important;
}

.card-inner {
  background: #ffffff;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 95, 156, 0.1);
  border-color: #1a5f9c;
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: #f8fafc;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.node-info h3 {
  margin: 15px 10px 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
}

/* --- HOTSPOT BUTTON --- */
.hotspot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 156, 0);
  transition: background 0.3s ease;
  opacity: 0;
}

.image-wrapper:hover .hotspot {
  background: rgba(26, 95, 156, 0.1);
  opacity: 1;
}

.hotspot-btn {
  width: 45px;
  height: 45px;
  background-color: #1a5f9c;
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(26, 95, 156, 0.3);
  cursor: pointer;
}

/* --- PROGRESS FOOTER --- */
.ui-footer-scroll {
  position: absolute;
  bottom: 80px;
  left: 10vw;
  width: 80vw;
  z-index: 20;
}

.progress-line-container {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #f1f5f9;
}

.progress-fill {
  position: absolute;
  height: 100%;
  background: #1a5f9c;
  width: 0%;
}

.scroll-handle {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.handle-circle {
  width: 36px;
  height: 36px;
  background-color: #1a5f9c;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.handle-circle i {
  color: #ffffff;
  font-size: 10px;
}

.track-padding-end {
  width: 10vw;
  flex-shrink: 0;
}

/* --- MODAL --- */
.program-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-modal.active {
  display: flex;
  opacity: 1;
}

.program-modal .modal-content {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.program-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.program-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
  font-size: 14px;
}

.program-modal .modal-close:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.program-modal #modalTitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  padding-right: 30px;
}

.program-modal #modalDesc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.program-modal .modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a5f9c;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.program-modal .modal-cta:hover {
  background: #0f172a;
  transform: translateY(-2px);
}

/* Animasi Modal Content */
.program-modal .modal-content {
  transform: scale(0.92) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
  opacity: 0;
}

.program-modal.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  /* Wrapper: height dikurangi karena kartu lebih kecil */
  .horizontal-scroll-wrapper {
    height: 250vh;
  }

  .horizontal-container {
    padding: 0;
  }

  .intro-block {
    flex: 0 0 280px;
    margin-right: 10px;
    gap: 14px;
  }

  .section-title-large {
    font-size: 2.2rem;
  }

  .program-node {
    flex: 0 0 240px;
  }

  .programs-horizontal-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 8vw;
    gap: 30px;
    width: max-content;
    align-items: center;
    will-change: transform;
    position: relative;
    z-index: 2;
  }

  /* Hotspot selalu tampil di touch */
  .hotspot {
    opacity: 1 !important;
    background: rgba(26, 95, 156, 0.06) !important;
  }

  .card-inner:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-color: #f1f5f9;
  }

  /* Modal bottom sheet */
  .program-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .program-modal .modal-content {
    border-radius: 28px;
    padding: 28px 24px;
    max-width: 100%;
  }

  .program-modal #modalTitle {
    font-size: 1.3rem;
  }

  .program-modal #modalDesc {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .horizontal-scroll-wrapper {
    height: 220vh; /* Lebih pendek karena kartu lebih kecil */
  }

  .intro-block {
    flex: 0 0 240px;
    gap: 12px;
  }

  .section-title-large {
    font-size: 1.9rem;
  }

  .ps-lead {
    font-size: 0.88rem;
  }

  .program-node {
    flex: 0 0 200px;
  }

  .programs-horizontal-track {
    padding: 0 5vw;
    gap: 16px;
  }

  .ui-footer-scroll {
    bottom: 40px;
    left: 5vw;
    width: 90vw;
  }

  .handle-circle {
    width: 30px;
    height: 30px;
  }

  .node-info h3 {
    font-size: 1rem;
    margin: 10px 8px 8px;
  }
}

@media (max-width: 480px) {
  .horizontal-scroll-wrapper {
    height: 200vh;
  }

  .intro-block {
    flex: 0 0 200px;
    gap: 10px;
  }

  .section-title-large {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
  }

  .ps-lead {
    font-size: 0.82rem;
  }

  .program-node {
    flex: 0 0 170px;
  }

  .programs-horizontal-track {
    padding: 0 4vw;
    gap: 12px;
  }

  .card-inner {
    padding: 8px;
    border-radius: 18px;
  }

  .image-wrapper {
    border-radius: 14px;
  }

  .node-info h3 {
    font-size: 0.9rem;
    margin: 8px 6px 6px;
  }

  .hotspot-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .ui-footer-scroll {
    bottom: 30px;
  }

  /* Modal */
  .program-modal {
    padding: 10px;
  }

  .program-modal .modal-content {
    border-radius: 22px;
    padding: 20px 16px;
  }

  .program-modal #modalTitle {
    font-size: 1.1rem;
  }

  .program-modal .modal-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
}

/* JOURNEY SECTON */
.method-section {
  position: relative;
  z-index: 30;
  background-color: #ffffff;
  display: flex;
  padding: 80px 10%;
  gap: 50px;
  align-items: flex-start;
}

/* --- SISI KIRI (JUDUL) --- */
.method-left {
  flex: 0.7;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.method-left .ps-badge {
  color: #1a5f9c;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.method-left h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* --- SISI KANAN (GRID 2x2) --- */
.method-right {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Kolom Sejajar */
  gap: 20px;
}

.method-card {
  background-color: #f8fafc;
  padding: 35px 30px;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  position: relative; /* Penting untuk z-index */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

/* --- PERBAIKAN NOMOR (FIXED VISIBILITY) --- */
.card-number {
  position: relative;
  z-index: 5; /* Pastikan berada di atas ::after */
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5f9c, #0ea5e9);
  color: #ffffff !important; /* Paksa warna putih */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 15px rgba(26, 95, 156, 0.2);
}

.method-card h3 {
  position: relative;
  z-index: 5;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}

.method-card p {
  position: relative;
  z-index: 5;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* --- ANGKA DEKORASI (BACKGROUND) --- */
.method-card::after {
  content: attr(data-number);
  position: absolute;
  top: -15px;
  right: -5px;
  font-size: 7.5rem;
  font-weight: 900;
  color: rgba(26, 95, 156, 0.04); /* Sangat tipis agar tidak mengganggu */
  z-index: 1; /* Lapisan paling bawah di dalam card */
  pointer-events: none;
}

/* --- HOVER EFFECT --- */
.method-card:hover {
  background-color: #ffffff;
  border-color: #1a5f9c;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .method-section {
    padding: 80px 6%;
    gap: 40px;
  }

  .method-left h2 {
    font-size: 2.2rem;
  }

  .method-right {
    gap: 16px;
  }

  .method-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .method-card h3 {
    font-size: 1.2rem;
  }

  .method-card p {
    font-size: 0.9rem;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .method-section {
    flex-direction: column; /* Stack jadi satu kolom */
    padding: 60px 5%;
    gap: 36px;
    align-items: stretch;
  }

  /* Matikan sticky di mobile */
  .method-left {
    flex: none;
    position: relative;
    top: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .method-left h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .method-left .ps-lead {
    font-size: 0.9rem;
    max-width: 480px;
  }

  /* Grid kartu tetap 2 kolom di tablet */
  .method-right {
    flex: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .method-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .card-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .method-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Matikan hover di touch */
  .method-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #e2e8f0;
    background-color: #f8fafc;
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .method-section {
    padding: 80px 6%;
    gap: 40px;
  }

  .method-left h2 {
    font-size: 2.2rem;
  }

  .method-right {
    gap: 16px;
  }

  .method-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .method-card h3 {
    font-size: 1.2rem;
  }

  .method-card p {
    font-size: 0.9rem;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .method-section {
    flex-direction: column;
    padding: 60px 5%;
    gap: 36px;
    align-items: stretch;
  }

  .method-left {
    flex: none;
    position: relative;
    top: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .method-left h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .method-left .ps-lead {
    font-size: 0.9rem;
    max-width: 480px;
  }

  /* Grid tetap 2 kolom di tablet */
  .method-right {
    flex: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .method-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .card-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    border-radius: 11px;
    margin-bottom: 14px;
  }

  .method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .method-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .method-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #e2e8f0;
    background-color: #f8fafc;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .method-section {
    padding: 48px 4%;
    gap: 24px;
  }

  .method-left h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .method-left .ps-lead {
    font-size: 0.85rem;
  }

  /* 1 kolom full width */
  .method-right {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Card compact: nomor kecil di pojok kanan atas */
  .method-card {
    padding: 20px 20px 20px 20px;
    border-radius: 18px;
    position: relative;
    flex-direction: column;
  }

  /* Nomor dipindah ke pojok kanan atas sebagai dekorasi kecil */
  .card-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0;
    box-shadow: none;
  }

  /* Judul dapat padding kanan agar tidak nabrak nomor */
  .method-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    padding-right: 44px; /* Ruang untuk nomor di pojok */
    line-height: 1.3;
  }

  .method-card p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #64748b;
  }
}

/* MENTOR SECTION */
.premium-mentor-section {
  padding: 100px 5%;
  background-color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.mentor-v3-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.label-badge-mini {
  display: inline-block;
  background: #f0f7ff;
  color: #20639b;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.display-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  color: #20639b;
}

/* 2. GRID SYSTEM */
.mentor-cinematic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
}

/* 3. CARD DESIGN & ANIMATIONS */
.compact-nexus-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  padding: 35px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efek Kilau (Magnetic Shine) */
.compact-nexus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(32, 99, 155, 0.08),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.8s;
}

.compact-nexus-card:hover {
  transform: translateY(-15px);
  border-color: #20639b;
  box-shadow: 0 40px 80px rgba(32, 99, 155, 0.12);
}

.compact-nexus-card:hover::before {
  left: 150%;
}

.card-top-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.image-box-refined {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-nexus-card:hover .image-box-refined {
  transform: scale(1.1) rotate(3deg);
}

.image-box-refined img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rank-box {
  font-size: 36px;
  font-weight: 900;
  color: #f1f5f9;
  transition: 0.4s;
}

.compact-nexus-card:hover .rank-box {
  color: rgba(32, 99, 155, 0.1);
}

.refined-name {
  font-size: 26px;
  font-weight: 850;
  color: #0f172a;
  margin: 10px 0 5px 0;
}

.role-desc {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.quote-area-mini {
  font-size: 13px;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px dashed #e2e8f0;
}

.card-footer-action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.view-profile-text {
  font-size: 12px;
  font-weight: 800;
  color: #20639b;
  text-transform: uppercase;
}

/* 4. MODAL POPUP SYSTEM (FINAL FIX) */
.executive-modal-system {
  position: fixed;
  inset: 0;
  z-index: 999999; /* Pastikan di atas segalanya */
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.executive-modal-system.active {
  display: flex;
  opacity: 1;
}

.modal-backdrop-refined {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85); /* Lebih gelap agar fokus */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* 2. Struktur Konten (Inti Perbaikan) */
.modal-content-glass {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 1000px; /* Ukuran ideal popup modern */
  height: auto;
  max-height: 90vh; /* Agar tidak terpotong layar */
  border-radius: 40px;
  display: flex; /* Membagi kolom dengan tegas */
  overflow: hidden; /* Memastikan gambar tidak meluber */
  z-index: 101;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(30px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.executive-modal-system.active .modal-content-glass {
  transform: scale(1) translateY(0);
}

/* 3. Kolom Visual (Kiri) */
.modal-side-visual {
  flex: 0 0 42%; /* Kunci lebar kolom kiri di 42% */
  background: #f1f5f9;
  position: relative;
}

.modal-side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Foto akan menyesuaikan tinggi box tanpa gepeng */
  display: block;
}

/* 4. Kolom Info (Kanan) */
.modal-side-content {
  flex: 1; /* Sisa lebar 58% otomatis untuk teks */
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow-y: auto; /* Jika teks sangat banyak, area teks saja yang scroll */
}

/* Tipografi Popup */
.modal-name-text {
  font-size: 40px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin: 10px 0;
}

.modal-tagline-text {
  color: #20639b;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.modal-divider-gold {
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, #faa23a, #ffd099);
  margin: 30px 0;
  border-radius: 10px;
}

/* Styling List Prestasi */
.modal-achievements-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.modal-achievements-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease forwards;
}

.executive-modal-system.active .modal-achievements-list li {
  opacity: 1;
  transform: translateX(0);
}

.modal-achievements-list li i {
  color: #10b981; /* Hijau Sukses */
  font-size: 16px;
  margin-top: 4px;
}

/* Area Quote */
.modal-quote-refined {
  margin-top: auto; /* Mendorong quote ke posisi paling bawah kolom */
  background: #f8fafc;
  padding: 25px 30px;
  border-radius: 30px;
  border-left: 6px solid #20639b;
  position: relative;
}

.modal-quote-refined p {
  font-style: italic;
  font-weight: 600;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Tombol Close Modern */
.modal-close-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 22px;
  cursor: pointer;
  z-index: 110;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-icon:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .premium-mentor-section {
    padding: 80px 4%;
  }

  .mentor-cinematic-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .compact-nexus-card {
    padding: 28px;
    border-radius: 32px;
  }

  .refined-name {
    font-size: 22px;
  }

  /* Modal */
  .modal-content-glass {
    max-width: 860px;
  }

  .modal-name-text {
    font-size: 32px;
  }

  .modal-side-content {
    padding: 40px;
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .premium-mentor-section {
    padding: 80px 4%;
  }

  .mentor-cinematic-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .compact-nexus-card {
    padding: 28px;
    border-radius: 32px;
  }

  .refined-name {
    font-size: 22px;
  }

  .modal-content-glass {
    max-width: 860px;
  }

  .modal-name-text {
    font-size: 32px;
  }

  .modal-side-content {
    padding: 40px;
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .premium-mentor-section {
    padding: 80px 4%;
  }

  .mentor-cinematic-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .compact-nexus-card {
    padding: 28px;
    border-radius: 32px;
  }

  .refined-name {
    font-size: 22px;
  }

  .modal-content-glass {
    max-width: 860px;
  }

  .modal-name-text {
    font-size: 32px;
  }

  .modal-side-content {
    padding: 40px;
  }
}

/* --- TABLET & MOBILE: max-width 768px --- */
@media (max-width: 768px) {
  .premium-mentor-section {
    padding: 60px 0;
  }

  .mentor-v3-header {
    margin-bottom: 40px;
    padding: 0 5%;
  }

  .display-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  /* === HORIZONTAL SCROLL === */
  .mentor-cinematic-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 5% 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .mentor-cinematic-grid::-webkit-scrollbar {
    display: none;
  }

  .mentor-cinematic-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .compact-nexus-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    padding: 22px;
    border-radius: 28px;
  }

  .compact-nexus-card:last-child {
    margin-right: 5vw;
  }

  .compact-nexus-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #e2e8f0;
  }

  .compact-nexus-card:hover .image-box-refined {
    transform: none;
  }

  .compact-nexus-card:hover::before {
    left: -150%;
  }

  .image-box-refined {
    width: 90px;
    height: 90px;
    border-radius: 22px;
  }

  .rank-box {
    font-size: 28px;
  }

  .refined-name {
    font-size: 18px;
  }

  .role-desc {
    font-size: 12px;
  }

  .quote-area-mini {
    font-size: 12px;
    padding-top: 16px;
  }

  .mentor-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 0 5%;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .mentor-scroll-hint i {
    animation: nudgeRight 1.5s ease-in-out infinite;
  }

  @keyframes nudgeRight {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(5px);
    }
  }

  /* === MODAL: Tengah layar === */
  .executive-modal-system {
    padding: 16px;
    align-items: center;
  }

  .modal-content-glass {
    flex-direction: column;
    border-radius: 32px;
    max-height: 88vh;
    max-width: 100%;
    transform: scale(0.95) translateY(30px);
  }

  .executive-modal-system.active .modal-content-glass {
    transform: scale(1) translateY(0);
  }

  .modal-side-visual {
    flex: 0 0 220px;
    width: 100%;
    height: 220px;
  }

  .modal-side-visual img {
    object-position: top center;
  }

  .modal-side-content {
    padding: 28px 24px;
    overflow-y: auto;
  }

  .modal-name-text {
    font-size: 26px;
  }

  .modal-tagline-text {
    font-size: 14px;
  }

  .modal-divider-gold {
    margin: 20px 0;
  }

  .modal-achievements-list li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .modal-quote-refined {
    padding: 18px 20px;
    border-radius: 20px;
  }

  .modal-quote-refined p {
    font-size: 13px;
  }

  .modal-close-icon {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .premium-mentor-section {
    padding: 48px 0;
  }

  .mentor-cinematic-grid {
    gap: 12px;
    padding: 12px 4% 20px;
  }

  .compact-nexus-card {
    flex: 0 0 220px;
    padding: 18px;
    border-radius: 24px;
  }

  .image-box-refined {
    width: 75px;
    height: 75px;
    border-radius: 18px;
  }

  .rank-box {
    font-size: 24px;
  }

  .refined-name {
    font-size: 16px;
  }

  .quote-area-mini {
    display: none;
  }

  .card-footer-action {
    margin-top: 12px;
  }

  /* Modal */
  .executive-modal-system {
    padding: 12px;
    align-items: center;
  }

  .modal-content-glass {
    max-height: 90vh;
    transform: scale(0.95) translateY(30px);
  }

  .executive-modal-system.active .modal-content-glass {
    transform: scale(1) translateY(0);
  }

  .modal-side-visual {
    flex: 0 0 180px;
    height: 180px;
  }

  .modal-side-content {
    padding: 20px 18px;
  }

  .modal-name-text {
    font-size: 22px;
  }

  .modal-achievements-list li {
    font-size: 12px;
    gap: 10px;
  }
}

/* GALLERY SECTION */
.gallery-section {
  padding: 100px 10%;
  background-color: #ffffff;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Struktur Grid Utama (2 Kolom) */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Kolom kanan sedikit lebih lebar untuk teks */
  gap: 30px;
  align-items: start; /* Menjaga elemen tetap di atas agar sejajar */
}

/* --- KOLOM KIRI --- */
.grid-column-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.item-main {
  height: 550px; /* Tinggi ini harus pas agar sejajar dengan area teks header */
}

.item-sub {
  height: 450px;
}

/* --- KOLOM KANAN --- */
.grid-column-right {
  display: flex;
  flex-direction: column;
  gap: 50px; /* Jarak antara teks header dan grid gambar bawah */
}

.gallery-header {
  padding-top: 10px; /* Penyesuaian mikro agar baseline teks sejajar atas gambar kiri */
}

.gallery-header p {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 450px;
}

/* Grid kecil di bawah deskripsi */
.inner-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.item-wide {
  grid-column: span 2;
  height: 380px;
}

.inner-grid-right .grid-item:not(.item-wide) {
  height: 280px;
}

/* --- GRID ITEM UNIVERSAL STYLES --- */
.grid-item {
  position: relative;
  border-radius: 40px; /* Melengkung halus sesuai gaya Carabicara */
  overflow: hidden;
  background-color: #f8fafc;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.grid-item:hover img {
  transform: scale(1.08);
}

/* --- TOMBOL FULLSCREEN (EXPAND) --- */
.expand-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.grid-item:hover .expand-btn {
  opacity: 1;
  transform: translateY(0);
}

.expand-btn:hover {
  background: #1a5f9c;
  color: #fff;
}

/* --- LIGHTBOX STYLING --- */
.lightbox {
  display: none; /* Muncul via JS */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 20000; /* Di atas segalanya */
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: lightboxZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  transform: rotate(90deg);
  color: #3b82f6;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 80px 6%;
  }

  .bento-grid {
    gap: 20px;
  }

  .item-main {
    height: 420px;
  }

  .item-sub {
    height: 340px;
  }

  .item-wide {
    height: 300px;
  }

  .inner-grid-right .grid-item:not(.item-wide) {
    height: 220px;
  }

  .grid-column-right {
    gap: 30px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 5%;
  }

  /* Stack jadi satu kolom */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Header pindah ke atas (kolom kanan jadi pertama via order) */
  .grid-column-right {
    order: -1;
    gap: 24px;
  }

  .grid-column-left {
    gap: 16px;
  }

  .gallery-header p {
    font-size: 1rem;
    max-width: 100%;
  }

  /* Tinggi gambar disesuaikan */
  .item-main {
    height: 320px;
  }

  .item-sub {
    height: 260px;
  }

  .item-wide {
    height: 260px;
  }

  .inner-grid-right .grid-item:not(.item-wide) {
    height: 180px;
  }

  .inner-grid-right {
    gap: 16px;
  }

  .grid-item {
    border-radius: 28px;
  }

  /* Expand button selalu terlihat di touch (tidak perlu hover) */
  .expand-btn {
    opacity: 1;
    transform: translateY(0);
    width: 42px;
    height: 42px;
    bottom: 16px;
    right: 16px;
  }

  /* Matikan zoom hover di touch */
  .grid-item:hover img {
    transform: none;
  }

  /* Lightbox lebih compact */
  .lightbox {
    padding: 20px;
  }

  .lightbox-content {
    max-width: 100%;
    border-radius: 16px;
  }

  .close-lightbox {
    top: 16px;
    right: 20px;
    font-size: 32px;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .gallery-section {
    padding: 48px 4%;
  }

  .bento-grid {
    gap: 16px;
  }

  .item-main {
    height: 260px;
  }

  .item-sub {
    height: 220px;
  }

  .item-wide {
    height: 220px;
  }

  .inner-grid-right .grid-item:not(.item-wide) {
    height: 150px;
  }

  .inner-grid-right {
    gap: 12px;
  }

  .grid-item {
    border-radius: 22px;
  }

  .expand-btn {
    width: 36px;
    height: 36px;
    bottom: 12px;
    right: 12px;
    font-size: 13px;
  }

  .lightbox {
    padding: 16px;
  }

  .close-lightbox {
    top: 12px;
    right: 16px;
    font-size: 28px;
  }
}

/* NEW NEWS SECTION */
.news-section {
  display: flex;
  flex-direction: row;
  padding: 80px 8% 40px 8% !important;
  background-color: #ffffff;
  gap: 50px;
  position: relative;
  min-height: 120vh;
}

/* --- SISI KIRI: STICKY TEXT  --- */
.news-left-sticky {
  flex: 0.8; /* Lebar teks diperkecil */
  height: 80vh;
  position: -webkit-sticky;
  position: sticky;
  top: 10vh;
  display: flex;
  align-items: center;
  z-index: 100;
}

.sticky-text-wrapper {
  max-width: 380px;
}

.ps-badge {
  display: inline-block;
  background: #f0f7ff;
  color: #1a5f9c;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title-large {
  font-size: 34px; /* Diperkecil dari 40px */
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
}

.section-title-large .highlight {
  color: #1a5f9c;
}

.ps-lead {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 20px 0 30px 0;
}

.news-cta-btn {
  padding: 14px 32px;
  background: #1a5f9c;
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.news-cta-btn:hover {
  background: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 95, 156, 0.2);
}

/* --- SISI KANAN: COMPACT SCROLLABLE CARDS --- */
.news-right-scroll {
  flex: 1.4;
  padding-bottom: 5vh !important;
}

.cards-stack-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-card {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: 320px;
  width: 100%;
  background: #ffffff;
  border-radius: 30px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Efek visual saat kartu tertindih (Opsional) */
.news-card:not(:last-child) {
}

.news-card:last-child {
  margin-bottom: 50px !important;
}

.card-image-box {
  width: 40%;
  height: 100%;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .card-image-box img {
  transform: scale(1.08);
}

.card-text-content {
  width: 60%;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  color: #1a5f9c;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

.card-text-content h3 {
  font-size: 1.45rem; /* Ukuran font judul lebih proporsional */
  font-weight: 850;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #1e293b;
}

.card-text-content p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .news-section {
    padding: 80px 5% 40px !important;
    gap: 30px;
    min-height: auto;
  }

  .news-left-sticky {
    flex: 1;
    height: auto;
    position: sticky;
  }

  .sticky-text-wrapper {
    max-width: 320px;
  }

  .news-card {
    height: 280px;
  }

  .card-text-content {
    padding: 25px 28px;
  }

  .card-text-content h3 {
    font-size: 1.2rem;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .news-section {
    flex-direction: column; /* Stack jadi satu kolom */
    padding: 60px 5% 40px !important;
    gap: 40px;
    min-height: auto;
  }

  /* Matikan sticky di mobile — tidak efektif di layout satu kolom */
  .news-left-sticky {
    flex: none;
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
  }

  .sticky-text-wrapper {
    max-width: 100%;
  }

  .section-title-large {
    font-size: 28px;
  }

  .ps-lead {
    font-size: 0.9rem;
    margin: 16px 0 24px;
  }

  .news-cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .news-cta-btn:hover {
    transform: none;
  }

  /* Kartu: matikan sticky, susun biasa */
  .news-right-scroll {
    flex: none;
    width: 100%;
    padding-bottom: 0 !important;
  }

  .cards-stack-wrapper {
    gap: 20px;
  }

  .news-card {
    position: relative; /* Matikan sticky */
    top: auto;
    height: auto; /* Tinggi mengikuti konten */
    margin-bottom: 0;
    border-radius: 24px;
    flex-direction: column; /* Foto di atas, teks di bawah */
  }

  .news-card:last-child {
    margin-bottom: 0 !important;
  }

  .card-image-box {
    width: 100%;
    height: 200px; /* Foto jadi banner horizontal */
  }

  .card-text-content {
    width: 100%;
    padding: 20px 22px;
  }

  .card-text-content h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .card-text-content p {
    font-size: 0.88rem;
    -webkit-line-clamp: 3;
  }

  /* Matikan hover zoom di touch */
  .news-card:hover .card-image-box img {
    transform: none;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .news-section {
    padding: 48px 4% 32px !important;
    gap: 30px;
  }

  .section-title-large {
    font-size: 24px;
  }

  .ps-lead {
    font-size: 0.88rem;
    margin: 14px 0 20px;
  }

  .news-cta-btn {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }

  .cards-stack-wrapper {
    gap: 16px;
  }

  .news-card {
    border-radius: 20px;
  }

  .card-image-box {
    height: 170px;
  }

  .card-text-content {
    padding: 16px 18px;
  }

  .card-text-content h3 {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .card-text-content p {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .news-date {
    font-size: 10px;
    margin-bottom: 6px;
  }
}

/* TESTIMONI SECTION */
.carabicara-testimonial {
  padding: 100px 0 80px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testi-wrapper-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- GRID LAYOUT --- */
.testi-grid-layout {
  display: grid;
  /* Kiri: Foto (45%), Kanan: Konten (55%) */
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center; /* Menjaga keseimbangan vertikal */
}

/* --- KOLOM KIRI: GALLERY FOTO --- */
.testi-left-gallery {
  position: relative;
  height: 480px;
  width: 100%;
}

.testi-image-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px); /* Muncul dari kiri */
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-image-group.active {
  opacity: 1;
  z-index: 2;
  visibility: visible;
  transform: translateX(0);
}

.testi-main-frame {
  height: 100%;
  border: 8px solid #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testi-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testi-sub-frames {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testi-sub-frames img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* --- KOLOM KANAN: HEADER & SPEECH BUBBLE --- */
.testi-right-content {
  display: flex;
  flex-direction: column;
}

/* Judul diletakkan di dalam kolom kanan agar hemat ruang */
.testi-header {
  margin-bottom: 30px;
}

.testi-header .ps-badge {
  color: #1a5f9c;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.testi-header .section-title {
  font-size: 2.8rem; /* Sedikit lebih kecil agar compact */
  line-height: 1.2;
  font-weight: 800;
  color: #1e293b;
}

.testi-header .highlight {
  color: #1a5f9c;
}

.testi-speech-bubble {
  background-color: #f8fafc;
  padding: 40px 50px;
  border-radius: 30px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(32, 99, 155, 0.03);
  z-index: 10;
}

.testi-quote-mark {
  font-size: 100px;
  color: #20639b;
  font-family: "Georgia", serif;
  position: absolute;
  top: 5px;
  left: 30px;
  opacity: 0.1;
  line-height: 1;
}

section.carabicara-testimonial .testi-speech-bubble .testi-main-text {
  color: #000000 !important;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  display: block;
}

.testi-client-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1e293b !important;
  margin-bottom: 3px;
}

.testi-slide-item small {
  color: #64748b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testi-slide-item {
  display: none;
}

.testi-slide-item.active {
  display: block;
  animation: testiFadeUp 0.5s ease forwards;
}

/* --- NAVIGASI --- */
.testi-navigation-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
}

.testi-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  color: #20639b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.testi-nav-btn:hover {
  /* background-color: #164a75; */
  transform: scale(1.05);
}

.testi-indicators {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  background-color: #cbd5e0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testi-dot.active {
  width: 30px;
  background-color: #fff;
  border-radius: 10px;
}

/* --- ANIMASI & RESPONSIVE --- */
@keyframes testiFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .carabicara-testimonial {
    padding: 80px 0 60px;
  }

  .testi-wrapper-container {
    width: 92%;
  }

  .testi-grid-layout {
    gap: 40px;
  }

  .testi-left-gallery {
    height: 400px;
  }

  .testi-header .section-title {
    font-size: 2.2rem;
  }

  .testi-speech-bubble {
    padding: 30px 36px;
    min-height: 240px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .carabicara-testimonial {
    padding: 60px 0 50px;
  }

  .testi-wrapper-container {
    width: 90%;
  }

  /* Stack jadi satu kolom */
  .testi-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* --- FOTO: Sederhanakan jadi 1 foto utama + 2 sub horizontal --- */
  .testi-left-gallery {
    height: 280px;
  }

  .testi-image-group {
    grid-template-columns: 1fr 0.6fr;
    gap: 12px;
  }

  .testi-main-frame {
    border-width: 5px;
    border-radius: 22px;
  }

  .testi-main-frame img {
    border-radius: 15px;
  }

  .testi-sub-frames {
    gap: 12px;
  }

  .testi-sub-frames img {
    border-radius: 12px;
    border-width: 3px;
  }

  /* --- KONTEN KANAN --- */
  .testi-header {
    margin-bottom: 20px;
  }

  .testi-header .section-title {
    font-size: 2rem;
  }

  .testi-speech-bubble {
    padding: 28px 30px;
    min-height: auto;
    border-radius: 24px;
  }

  .testi-quote-mark {
    font-size: 80px;
    top: 0px;
    left: 20px;
  }

  section.carabicara-testimonial .testi-speech-bubble .testi-main-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .testi-client-name {
    font-size: 1rem;
  }

  .testi-navigation-box {
    margin-top: 20px;
    gap: 12px;
  }

  .testi-nav-btn {
    width: 44px;
    height: 44px;
  }

  .testi-nav-btn:hover {
    transform: none;
  }

  .testi-dot.active {
    width: 24px;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .carabicara-testimonial {
    padding: 48px 0 40px;
  }

  .testi-wrapper-container {
    width: 92%;
  }

  /* Foto: sembunyikan sub frames, tampilkan main frame saja */
  .testi-left-gallery {
    height: 220px;
  }

  .testi-image-group {
    grid-template-columns: 1fr; /* Hanya 1 kolom = foto utama full width */
  }

  .testi-sub-frames {
    display: none; /* Sembunyikan 2 foto kecil di mobile */
  }

  .testi-main-frame {
    border-radius: 20px;
    border-width: 4px;
    height: 220px;
  }

  .testi-header .section-title {
    font-size: 1.7rem;
  }

  .testi-speech-bubble {
    padding: 22px 22px;
    border-radius: 20px;
  }

  .testi-quote-mark {
    font-size: 60px;
    left: 16px;
  }

  section.carabicara-testimonial .testi-speech-bubble .testi-main-text {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  .testi-client-name {
    font-size: 0.95rem;
  }

  .testi-slide-item small {
    font-size: 0.78rem;
  }

  .testi-navigation-box {
    margin-top: 16px;
    gap: 10px;
  }

  .testi-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testi-dot {
    width: 7px;
    height: 7px;
  }

  .testi-dot.active {
    width: 22px;
  }
}

/* LOCATION SECTION */
.location-section {
  padding: 60px 8% !important; /* Padding luar diperkecil agar padat */
  background-color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* 1. Header Ringkas */
.location-header {
  margin-bottom: 40px; /* Jarak ke konten dipersempit */
}

.location-header .ps-badge {
  display: inline-block;
  color: #1a5f9c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.location-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-top: 10px;
}

.location-header h2 span.highlight {
  color: #1a5f9c;
  display: inline-block;
  position: relative;
}

/* 2. Grid Layout */
.location-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px; /* Gap lebih rapat */
}

/* 3. Card Styling - Fokus pada Kepadatan */
.location-card-compact {
  background: #ffffff;
  border-radius: 24px; /* Radius lebih kecil agar terlihat lebih tegas/pro */
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.location-card-compact:hover {
  transform: translateY(-8px);
  border-color: #1a5f9c;
  box-shadow: 0 20px 40px rgba(32, 99, 155, 0.1);
}

/* 4. Map Container - Dikecilkan Tingginya */
.mini-map-top {
  height: 180px; /* SANGAT PADAT: tinggi dipangkas drastis */
  width: 100%;
  position: relative;
}

.mini-map-top iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.5s ease;
}

.location-card-compact:hover .mini-map-top iframe {
  filter: grayscale(0) opacity(1);
}

/* 5. Info Area - Padding Rapat */
.location-info-bottom {
  padding: 25px 30px; /* Padding internal dipersempit */
}

.city-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a5f9c;
  font-weight: 800;
  margin-bottom: 5px;
  display: block;
}

.location-info-bottom h3 {
  font-size: 18px; /* Font judul dikecilkan agar padat */
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
  line-height: 1.3;
}

.location-info-bottom p {
  color: #64748b;
  font-size: 13px; /* Ukuran teks alamat dikurangi */
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Contact Row Horizontal (Lebih Hemat Ruang) */
.contact-minimal {
  display: flex; /* Berjejer ke samping agar tidak memakan baris */
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.contact-item {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: #1a5f9c;
  font-size: 13px;
}

/* 6. Link Bergaya Tombol Minimalis */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a5f9c;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: all 0.3s ease;
}

.text-link:hover {
  gap: 12px;
  color: #0f172a;
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .location-section {
    padding: 60px 5% !important;
  }

  .location-grid-layout {
    gap: 20px;
  }

  .location-header h2 {
    font-size: 30px;
  }

  .mini-map-top {
    height: 160px;
  }

  .location-info-bottom {
    padding: 20px 24px;
  }

  .location-info-bottom h3 {
    font-size: 16px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 5% !important;
  }

  .location-header {
    margin-bottom: 30px;
  }

  .location-header h2 {
    font-size: 26px;
    letter-spacing: -1px;
  }

  /* Stack jadi satu kolom */
  .location-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card-compact {
    border-radius: 20px;
  }

  /* Matikan hover di touch */
  .location-card-compact:hover {
    transform: none;
    border-color: #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }

  .location-card-compact:hover .mini-map-top iframe {
    filter: grayscale(1) opacity(0.7);
  }

  .mini-map-top {
    height: 180px;
  }

  .location-info-bottom {
    padding: 20px 22px;
  }

  .location-info-bottom h3 {
    font-size: 16px;
  }

  .location-info-bottom p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .contact-minimal {
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 12px;
  }

  .contact-item {
    font-size: 12px;
  }

  .text-link {
    font-size: 13px;
  }

  .text-link:hover {
    gap: 8px;
    color: #1a5f9c;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .location-section {
    padding: 48px 4% !important;
  }

  .location-header h2 {
    font-size: 22px;
    letter-spacing: -0.5px;
  }

  .location-grid-layout {
    gap: 16px;
  }

  .location-card-compact {
    border-radius: 18px;
  }

  /* Map sedikit lebih tinggi di mobile agar terlihat jelas */
  .mini-map-top {
    height: 160px;
  }

  .location-info-bottom {
    padding: 16px 18px;
  }

  .city-tag {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .location-info-bottom h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .location-info-bottom p {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .contact-minimal {
    flex-direction: column; /* Stack vertikal di mobile kecil */
    gap: 8px;
    margin-bottom: 14px;
    padding-top: 10px;
  }

  .contact-item {
    font-size: 12px;
  }

  .text-link {
    font-size: 12px;
  }
}

/* OFFERING SECTION */
.offering-section {
  padding: 80px 8% !important;
  background-color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.offering-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Layout Grid (Kunci Penghemat Tinggi) --- */
.offering-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Membagi teks di kiri, form di kanan */
  gap: 60px;
  align-items: center;
}

/* --- SISI KIRI: HEADER & TIMER --- */
.offering-header {
  text-align: left;
}

.offering-header .ps-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #1a5f9c;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.offering-header .section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.offering-header .highlight {
  color: #1a5f9c;
}

.offering-header .section-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 450px;
}

/* Countdown Timer yang Ringkas */
.countdown-wrapper {
  display: flex;
  gap: 12px;
}

.timer-box {
  background: #ffffff;
  padding: 15px;
  border-radius: 20px;
  min-width: 85px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #f1f5f9;
}

.timer-box span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a5f9c;
  line-height: 1;
  margin-bottom: 4px;
}

.timer-box small {
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1px;
}

/* --- SISI KANAN: FORM WRAPPER --- */
.offering-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 35px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #f1f5f9;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Nama & Program sejajar */
  gap: 15px;
  margin-bottom: 15px;
}

.input-group {
  margin-bottom: 15px;
  animation: slideDownIn 0.4s ease forwards;
}

.hidden {
  display: none !important;
}

.input-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
  font-size: 0.85rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #334155;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #1a5f9c;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(26, 95, 156, 0.06);
}

.input-group textarea {
  height: 80px; /* Diperpendek agar hemat ruang */
  resize: none;
}

/* Tombol WhatsApp Premium */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.form-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Animasi */
@keyframes slideDownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .offering-section {
    padding: 60px 5% !important;
  }

  .offering-content-grid {
    gap: 40px;
  }

  .offering-header .section-title {
    font-size: clamp(28px, 4vw, 38px);
  }

  .timer-box {
    min-width: 72px;
    padding: 12px 10px;
  }

  .timer-box span {
    font-size: 1.5rem;
  }

  .offering-form-wrapper {
    padding: 30px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .offering-section {
    padding: 60px 5% !important;
  }

  /* Stack jadi satu kolom */
  .offering-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .offering-header {
    text-align: center;
  }

  .offering-header .section-desc {
    max-width: 100%;
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  /* Timer centered */
  .countdown-wrapper {
    justify-content: center;
    gap: 10px;
  }

  .timer-box {
    min-width: 70px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .timer-box span {
    font-size: 1.5rem;
  }

  /* Form */
  .offering-form-wrapper {
    padding: 28px 24px;
    border-radius: 28px;
  }

  /* Form grid tetap 2 kolom di tablet */
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px; /* Mencegah auto-zoom di iOS saat focus input */
    padding: 11px 16px;
  }

  .submit-btn {
    padding: 15px;
    font-size: 0.95rem;
  }

  .submit-btn:hover {
    transform: none;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .offering-section {
    padding: 48px 4% !important;
  }

  .offering-header .section-title {
    font-size: clamp(24px, 7vw, 32px);
    letter-spacing: -1px;
  }

  .offering-header .section-desc {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  /* Timer lebih compact */
  .countdown-wrapper {
    gap: 8px;
  }

  .timer-box {
    min-width: 0;
    flex: 1; /* Bagi rata 4 kotak dalam satu baris */
    padding: 10px 6px;
    border-radius: 14px;
  }

  .timer-box span {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }

  .timer-box small {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  /* Form */
  .offering-form-wrapper {
    padding: 20px 18px;
    border-radius: 24px;
  }

  /* Form grid jadi 1 kolom di mobile */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .input-group {
    margin-bottom: 12px;
  }

  .input-group label {
    font-size: 0.82rem;
    margin-bottom: 6px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px; /* Tetap 16px untuk cegah auto-zoom iOS */
    padding: 10px 14px;
    border-radius: 10px;
  }

  .input-group textarea {
    height: 70px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 12px;
    gap: 8px;
  }

  .form-note {
    font-size: 0.72rem;
    margin-top: 12px;
  }
}

/* BOOKING SECTION  */

.pesan {
  padding: 100px 8%;
  background-color: #ffffff;
}

.pesan-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- KIRI: PROFILE --- */
.profile-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f1f5f9;
  margin-bottom: 25px;
}

.pesan-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}

.pesan-info p {
  color: #64748b;
  line-height: 1.6;
}

.pesan-benefit-list {
  list-style: none;
  margin-top: 25px;
  padding: 0;
}

.pesan-benefit-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: #1a5f9c;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- KANAN: FORM CARD --- */
.pesan-form-card {
  background: #f8fafc;
  padding: 45px;
  border-radius: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.pesan-form-header {
  margin-bottom: 30px;
}
.pesan-form-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}
.pesan-form-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.pesan-input-group {
  margin-bottom: 20px;
}

.pesan-input-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.pesan-input-group input,
.pesan-input-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: 0.3s;
}

.pesan-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.pesan-submit-btn {
  width: 100%;
  padding: 18px;
  background: #1e293b;
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.pesan-submit-btn:hover {
  background: #1a5f9c;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 95, 156, 0.15);
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  .pesan {
    padding: 80px 5%;
  }

  .pesan-container {
    gap: 50px;
  }

  .pesan-info h3 {
    font-size: 1.8rem;
  }

  .pesan-form-card {
    padding: 35px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  .pesan {
    padding: 60px 5%;
  }

  /* Stack jadi satu kolom */
  .pesan-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Profile: layout horizontal agar lebih compact */
  .pesan-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-image img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .pesan-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .pesan-info p {
    font-size: 0.92rem;
  }

  .pesan-benefit-list {
    margin-top: 20px;
    display: inline-flex; /* Benefit berjejer horizontal */
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .pesan-benefit-list li {
    margin-bottom: 0;
    font-size: 13px;
    background: #f0f7ff;
    padding: 6px 14px;
    border-radius: 50px;
  }

  /* Form card */
  .pesan-form-card {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .pesan-form-header h4 {
    font-size: 1.3rem;
  }

  .pesan-form-header p {
    font-size: 0.88rem;
  }

  .pesan-input-group label {
    font-size: 0.85rem;
  }

  .pesan-input-group input,
  .pesan-input-group select {
    font-size: 16px; /* Cegah auto-zoom iOS */
    padding: 13px 15px;
  }

  .pesan-booking-grid {
    grid-template-columns: 1fr 1fr; /* Tetap 2 kolom di tablet */
    gap: 12px;
  }

  .pesan-submit-btn {
    padding: 16px;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .pesan-submit-btn:hover {
    transform: none;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  .pesan {
    padding: 48px 4%;
  }

  .pesan-container {
    gap: 28px;
  }

  .profile-image img {
    width: 85px;
    height: 85px;
    border-width: 4px;
    margin-bottom: 16px;
  }

  .pesan-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .pesan-info p {
    font-size: 0.88rem;
  }

  .pesan-benefit-list {
    gap: 8px;
    margin-top: 16px;
  }

  .pesan-benefit-list li {
    font-size: 12px;
    padding: 5px 12px;
  }

  .pesan-form-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .pesan-form-header {
    margin-bottom: 20px;
  }

  .pesan-form-header h4 {
    font-size: 1.15rem;
  }

  .pesan-input-group {
    margin-bottom: 14px;
  }

  /* Booking grid jadi 1 kolom di mobile kecil */
  .pesan-booking-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pesan-submit-btn {
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 12px;
    margin-top: 6px;
  }
}

/* FOOTER SECTION */
footer {
  background: linear-gradient(135deg, #f9fbff 0%, #edf2fb 50%, #f1f5ff 100%);
  color: #111827;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container img {
  width: 80%;
  margin: -10px;
}

/* Kolom */
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h2.footer-brand {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e3a8a;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #374151;
}

.footer-col ul li a {
  text-decoration: none;
  color: #374151;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #2563eb;
}

/* Ikon Sosial */
.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 20px;
  color: #374151;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Ikon dalam kontak */
.footer-col ul li i {
  margin-right: 8px;
  color: #2563eb;
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e5ebf7;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-links a {
  text-decoration: none;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: #2563eb;
}

/* --- TABLET LANDSCAPE: max-width 1024px --- */
@media (max-width: 1024px) {
  footer {
    padding: 50px 5% 24px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 180px;
  }
}

/* --- TABLET PORTRAIT: max-width 768px --- */
@media (max-width: 768px) {
  footer {
    padding: 48px 5% 24px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  /* Kolom brand & kontak full width */
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 2;
  }

  .footer-container img {
    width: 45%;
    margin: -6px 0;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 17px;
  }

  .footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 32px;
  }

  .footer-bottom .footer-links {
    gap: 16px;
  }
}

/* --- MOBILE: max-width 480px --- */
@media (max-width: 480px) {
  footer {
    padding: 40px 4% 20px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  /* Kolom brand & kontak tetap full width */
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 2;
  }

  .footer-container img {
    width: 55%;
    margin: -4px 0;
  }

  .footer-col p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-socials a {
    font-size: 20px;
  }

  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-col ul li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-bottom .footer-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom .footer-links a {
    font-size: 12px;
  }
}
