/* ========================================
   RESET & BASE
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap");

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --secondary: #7c3aed;
  --cyan: #06b6d4;
  --bg: #f8fafc;
  --text-dark: #0f172a;
  --text-light: #475569;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================= */
/* BACKGROUND MESH & CYBER GRID KONSISTEN    */
/* ========================================= */
.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: breathe 15s infinite alternate ease-in-out;
}
.blob-blue {
  width: 600px;
  height: 600px;
  background: #bfdbfe;
  top: -10%;
  left: -10%;
}
.blob-purple {
  width: 500px;
  height: 500px;
  background: #e9d5ff;
  bottom: 0%;
  right: -10%;
  animation-delay: -5s;
}
.blob-cyan {
  width: 500px;
  height: 500px;
  background: #cffafe;
  top: 40%;
  left: 20%;
  animation-delay: -10s;
}

.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
@keyframes breathe {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(30px, -30px);
  }
}

/* ========================================= */
/* HERO SECTION REFLEKSI                     */
/* ========================================= */
.page-wrapper {
  padding: 140px 0 100px;
}
.hero-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ========================================= */
/* REFLEKSI BENTO GRID (VERTIKAL STACK)      */
/* ========================================= */
.refleksi-bento {
  display: grid;
  grid-template-columns: 1fr; /* Memaksa semua kartu dari atas ke bawah */
  gap: 40px;
  perspective: 1000px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.icon-ring {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.blue-ring {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.purple-ring {
  background: linear-gradient(135deg, var(--secondary), #581c87);
}
.orange-ring {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

/* --- KARTU 1: TIMELINE EVOLUSI (4 TAHAP) --- */
.card-header-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.card-header-flex .icon-ring {
  margin-bottom: 0;
  flex-shrink: 0;
}

.timeline-interactive {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Diubah jadi 4 kolom */
  gap: 20px;
  position: relative;
  padding-top: 30px;
}
.timeline-progress {
  position: absolute;
  top: 10px;
  left: 12.5%;
  width: 75%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--cyan),
    var(--secondary)
  );
  border-radius: 10px;
  opacity: 0.5;
  z-index: 0;
}
.time-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 15px;
  transition: transform 0.3s;
  cursor: default;
}
.time-step:hover {
  transform: translateY(-5px);
}
.step-dot {
  width: 40px;
  height: 40px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  margin: -30px auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
  transition: 0.3s;
}
.time-step:hover .step-dot {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}
.time-step h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.time-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 3D TILT EFFECT */
.tilt-glass {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glare {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 50%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

/* --- KARTU 2 & 3: SPLIT LAYOUT DESKTOP --- */
.split-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Sisi Teks (Kiri) Kartu B */
.split-text-box {
  padding: 40px;
}
.insight-list {
  list-style: none;
  margin-top: 20px;
}
.insight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}
.insight-list i {
  color: #f97316;
  margin-top: 4px;
}
.hover-hint-desktop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* 3D FLIP CARD (Kanan) Kartu B */
.flip-card-container {
  width: 100%;
  height: 450px;
  perspective: 1000px;
}
.flip-card {
  background-color: transparent;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Sisi Depan */
.card-orange-front {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.card-orange-front::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: #f97316;
  filter: blur(60px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}
.flip-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  width: max-content;
}
.flip-icon {
  font-size: 2.5rem;
  color: #f97316;
  margin-bottom: 20px;
}

/* Sisi Belakang */
.card-cyan-back {
  background: linear-gradient(135deg, var(--cyan), #0369a1);
  transform: rotateY(180deg);
  color: white;
}
.card-cyan-back .flip-badge.success {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.card-cyan-back .flip-icon {
  color: white;
}
.card-cyan-back p {
  color: rgba(255, 255, 255, 0.9);
}

.flip-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}
.flip-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}
.hover-hint {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f97316;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulseHint 2s infinite;
}
@keyframes pulseHint {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

/* --- KARTU 3: SPOTLIGHT HOLOGRAPHIC CARD --- */
.spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: default;
}
.spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}
.spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(124, 58, 237, 0.12),
    transparent 40%
  );
}
.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-content {
  position: relative;
  z-index: 3;
}

/* Kiri: Umpan Balik */
.feedback-box {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  margin-top: 20px;
  position: relative;
}
.quote-mark {
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.15;
  position: absolute;
  top: 15px;
  right: 20px;
}
.feedback-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}
.feedback-author {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  text-align: right;
}

/* Kanan: PPL Mandiri */
.action-plan-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  height: 100%;
}
.action-plan-box h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.action-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.action-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.action-icon {
  width: 45px;
  height: 45px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.action-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.action-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================= */
/* ANIMASI GLOBAL & NAVBAR KONSISTEN         */
/* ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.navbar.scrolled {
  top: 20px;
  left: 5%;
  width: 90%;
  height: 75px;
  padding: 0 4%;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
}
.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
}
.brand-name .highlight {
  color: var(--primary);
}
.logo-img {
  width: 35px;
  margin-right: 12px;
  transition: 0.3s;
}
.navbar.scrolled .logo-img {
  width: 30px;
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-right {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-link,
.dropbtn {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 30px;
  transition: 0.3s;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover,
.nav-link.active,
.dropdown:hover .dropbtn {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}
.dropdown {
  position: relative;
}
.dropdown-content {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  min-width: 220px;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  top: 115%;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: 12px;
  transition: 0.2s;
  font-weight: 600;
  font-size: 0.9rem;
}
.dropdown-content a i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.dropdown-content a:hover {
  background: #f1f5f9;
  color: var(--primary);
  transform: translateX(5px);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: 0.3s;
}

/* EPIC GLOW FOOTER KONSISTEN */
.epic-footer {
  position: relative;
  background: #020617;
  color: white;
  padding: 100px 0 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 80px;
}
.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}
.f-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -200px;
  left: -100px;
}
.f-orb-2 {
  width: 500px;
  height: 500px;
  background: #7c3aed;
  bottom: -200px;
  right: -200px;
}
.footer-container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-cta {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.footer-cta span {
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-cta p {
  font-size: 1.2rem;
  color: #94a3b8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.footer-brand .footer-logo span {
  color: #60a5fa;
}
.footer-brand .footer-desc {
  color: #94a3b8;
  max-width: 350px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.social-neon {
  display: flex;
  gap: 15px;
}
.neon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.neon-btn:hover {
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary);
  transform: translateY(-5px);
  border-color: var(--primary);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
  font-weight: 700;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-links a i {
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
  color: #60a5fa;
}
.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}
.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact p {
  color: #94a3b8;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact p i {
  color: #60a5fa;
}
.map-glass {
  width: 100%;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.9rem;
}

/* ========================================= */
/* RESPONSIVE DESIGN                         */
/* ========================================= */
@media (max-width: 1024px) {
  .page-title {
    font-size: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-card-inner {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .bento-card {
    padding: 40px 30px;
  }
  .split-card-inner {
    grid-template-columns: 1fr;
  }
  .hover-hint-desktop {
    display: none;
  }

  .timeline-interactive {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 30px;
  }
  .timeline-progress {
    width: 4px;
    height: 100%;
    left: 18px;
    top: 0;
    background: linear-gradient(
      180deg,
      var(--primary),
      var(--cyan),
      var(--secondary)
    );
  }
  .time-step {
    text-align: left;
    padding: 0;
    margin-bottom: 30px;
  }
  .step-dot {
    margin: 0;
    position: absolute;
    left: -36px;
    top: 0;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .time-step h4 {
    margin-left: 20px;
  }
  .time-step p {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .navbar.scrolled {
    width: 96%;
    left: 2%;
    top: 10px;
    padding: 0 5%;
  }
  .hamburger {
    display: flex;
    z-index: 1100;
  }
  .nav-right {
    position: absolute;
    top: 95px;
    left: -120%;
    width: 100%;
    background: #ffffff !important;
    flex-direction: column;
    padding: 20px 0;
    transition: 0.4s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    align-items: center;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
  }
  .navbar.scrolled .nav-right {
    top: 80px;
  }
  .nav-right.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .nav-link,
  .dropbtn {
    width: 90%;
    justify-content: center;
    margin: 5px 0;
    text-align: center;
  }
  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    width: 90%;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: none;
    margin-top: 5px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
  }
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none !important;
  }
  .dropdown-content a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px;
  }

  .page-title {
    font-size: 2.8rem;
  }
  .flip-card-container {
    height: 480px;
  } /* Mencegah teks kepotong di HP */

  .footer-grid,
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-brand .footer-desc {
    margin: 0 auto 30px;
  }
  .social-neon,
  .footer-links a,
  .footer-contact p {
    justify-content: center;
  }
}
