.disabled {
  pointer-events: none;   /* tidak bisa diklik */
  opacity: 0.5;           /* efek disabled */
  cursor: not-allowed;
}


/* === WRAPPER SETIAP TUMPUKAN KARTU === */
.card-stack {
  position: relative;
  width: 220px;
  height: 320px;
  perspective: 1200px;
  cursor: pointer;
  margin: 40px;
}

/* === KARTU DASAR === */
.card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: transform 1.5s cubic-bezier(0.55, 0.03, 0.39, 0.95), z-index 1.5s;
  transform-origin: center;
  text-align: center;
  padding: 20px;
}

/* === KONTEN DALAM KARTU === */
.logo {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}

.title {
  color: hsl(0, 0%, 100%);
  font-size: 2.5rem;
  margin-bottom: 230px;
  transform: translateZ(10px);
}
.title1 {
  color: hsl(0, 0%, 0%);
  font-size: 2.5rem;
  margin-bottom: 270px;
  font-family: "Uncial Antiqua", serif;
}

.subtitle {
  color: #ffffff;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* === WARNA KARTU === */
.card-a {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  z-index: 2;
  transform: translateZ(0) scale(1);
  border: 5px solid #ff01e6;
}
.card-a img {
  width: 275px;
  height: 275px;
  margin-left: -10px;
}

.card-b {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  z-index: 1;
  transform: translateZ(-100px) scale(0.9);
  border: 5px solid #d93acd;
}
.card-b h2 {
  font-size: 19px;
  transform: translateY(10px);
}
.card-b img {
  width: 275px;
  height: 275px;
  left: 10px;
  
}
/* === KELOMPOK KATEGORI === */
.categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.category-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

/* === TOMBOL DASAR === */
.btn-register,
.btn-more {
  padding: 10px 2px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}

/* === MORE INFO (aktif, glowing) === */
.btn-more {
  background: linear-gradient(135deg, #ffffff, #dfe6e9);
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transform: translateY(-30px);
  padding: 10px 10px 30px;
  margin-top: 10px;
}

/* Efek hover glowing */
.btn-more::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.btn-more:hover::before {
  left: 100%;
}

.btn-more:hover {
  color: white;
  background: linear-gradient(135deg, #a4ffb8, #1c8e4d);
  box-shadow: 0 0 25px rgba(77, 255, 145, 0.8),
    0 0 10px rgba(150, 255, 173, 0.5);
}
.card-a,
.card-b {
  transform: translateZ(0) rotateY(0) scale(1);
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

@font-face {
  font-family: "fantasy1";
  src: url("Fantasy Script.otf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  @font-face {
    font-family: "apple";
    src: url("Apple.otf") format("truetype");
  }
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.section {
  min-height: 80vh; /* tiap section setidaknya setinggi layar */
  width: 100%;
}

.white {
  background: linear-gradient(to top, #402c5c, #886eaf);
}

/* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 7px;
  align-items: center;
  height: 50px;
  width: auto;
  border-radius: 10px;
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
}

.menu-box span {
  margin-left: 50px;
  color: #ff00f2;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
}

/* TEKS MENU */
.menu-box a {
  font-family: "Poppins";
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  color: #ff00f2;
  position: relative;
}

/* GARIS BAWAH HALUS */
.menu-box a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff00f2;
  transition: width 0.25s ease;
}

/* HOVER: cukup underline muncul */
.menu-box a:hover::after {
  width: 100%;
}

/* MENU AKTIF */
.menu-box a.active::after {
  width: 100%;
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 11px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}

.content {
  background: white;
  width: 60%;
  margin: auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.hero-text0 h1 {
  font-size: 40px;
  align-items: center;
  transform: translateX(-200px);
  margin-top: -40px;
}
.cta-text {
  text-align: center;
  color: #f5f5f5;
  margin-bottom: 40px;
  margin-top: 100px;
}

.cta-text strong {
  font-size: 7rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.cta-text p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 50px;
}
.emoji-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 140, 255, 0.18);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 10px rgba(0, 140, 255, 0.4), 0 0 25px rgba(0, 140, 255, 0.25);
  animation: floatDown 2.2s ease-in-out infinite;
}

@keyframes floatDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}

.title-section {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 26px;
}

.hero-text h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}
.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  font-family: "Times New Roman", Times, serif;
  color: #000;
}

.title-main {
  display: flex;
  align-items: flex-start;
}

.title-main h1 {
  font-size: 80px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  color: #e6e6fa;
  font-family: "Cinzel", serif;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.title-main1 {
  display: flex;
  align-items: flex-start;
}
.title-main1 h1 {
  font-size: 80px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  color: #120a2a;
}
.title-sub {
  margin-left: 10px;
}

.title-sub h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 20px 0 0 0;
  line-height: 1;
  color: #e6e6fa;
  font-family: "Cinzel", serif;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.title-sub p {
  font-size: 12px;
  font-weight: 400;
  margin: 2px 0 0 0;
  text-align: right;
  letter-spacing: 1px;
  color: #e6e6fa;
  font-family: "Cinzel", serif;
}
.title-sub1 {
  margin-left: 10px;
}

.title-sub1 h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 20px 0 0 0;
  line-height: 1;
  color: #120a2a;
}

.title-sub1 p {
  font-size: 12px;
  font-weight: 400;
  margin: 2px 0 0 0;
  text-align: right;
  letter-spacing: 1px;
  color: #120a2a;
}
.card-buttons .btn.disabled {
  position: relative;
  color: gray;
  border-color: gray;
  opacity: 0.6;
  pointer-events: none;
}

/* Lapisan tak terlihat di atas tombol agar kursor bisa mendeteksi hover */
.card-buttons .btn.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: not-allowed; /* munculkan 🚫 */
  background: transparent;
  z-index: 2;
}
.cards-row {
  margin-bottom: 10px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}

.card-stack {
  position: relative;
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

.card-buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* disembunyikan dulu */
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.card-buttons .btn {
  background-color: white;
  color: black;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  width: 200px;
  transition: 0.3s ease;
  border: 1px solid black;
}

.card-buttons .btn:hover {
  background-color: black;
  color: white;
  transform: scale(1.05);
  z-index: 1;
}
.card-image {
  position: absolute;
  top: 43%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image img {
  width: 350px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image img {
  opacity: 1;
}

/* Saat kartu terbuka, tampilkan tombol */
.card-stack.open .card-buttons {
  display: flex;
}
.back-static {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2c2c2c;
  border-radius: 10px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
}

.front {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  z-index: 2;
  transform-style: preserve-3d;
}

.door {
  position: absolute;
  width: 50%;
  height: 100%;
  background: #e6e6fa;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: transform 0.8s ease;
  transform-origin: center left;
}
.door1 {
  position: absolute;
  width: 50%;
  height: 100%;
  background: #120a2a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: transform 0.8s ease;
  transform-origin: center left;
}
.right-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/ocians\ colored.png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left-door {
  background-image: url("assets/ocians\ colored.png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}

/* Belakang kartu */
.back {
  background: #2c2c2c;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

/* Efek pintu membuka */
.card-stack:hover .left-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right-door {
  transform: rotateY(120deg);
}
/*irhamna*/
.card-image1 {
  position: absolute;
  top: 43%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image1 img {
  width: 300px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image1 img {
  opacity: 1;
}
.right1-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right1-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/IRHAMNA\(coloring\).png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left1-door {
  background-image: url("assets/IRHAMNA\(coloring\).png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left1-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right1-door {
  transform: rotateY(120deg);
}
/*irhamna*/
/*erudite*/
.card-image2 {
  position: absolute;
  top: 50%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image2 img {
  width: 330px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image2 img {
  opacity: 1;
}
.right2-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right2-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/ERUDITE\(coloring\).png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left2-door {
  background-image: url("assets/ERUDITE\(coloring\).png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left2-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right2-door {
  transform: rotateY(120deg);
}
/*erudite*/
/*storm*/
.card-image3 {
  position: absolute;
  top: 55%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image3 img {
  width: 370px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image3 img {
  opacity: 1;
}
.right3-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right3-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/STORM-logo\ \(color\).png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left3-door {
  background-image: url("assets/STORM-logo\ \(color\).png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left3-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right3-door {
  transform: rotateY(120deg);
}
/*storm*/
/*escimo*/
.card-image4 {
  position: absolute;
  top: 45%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image4 img {
  width: 370px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image4 img {
  opacity: 1;
}
.right4-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right4-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/ESCIMO\(coloring\).png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left4-door {
  background-image: url("assets/ESCIMO\(coloring\).png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left4-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right4-door {
  transform: rotateY(120deg);
}
/*escimo*/
/*akrimna*/
.card-image5 {
  position: absolute;
  top: 50%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image5 img {
  width: 300px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image5 img {
  opacity: 1;
}
.right5-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right5-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/AKRIMNA\(coloring\).png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left5-door {
  background-image: url("assets/AKRIMNA\(coloring\).png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left5-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right5-door {
  transform: rotateY(120deg);
}
/*akrimna*/
/*qolbuna*/
.card-image6 {
  position: absolute;
  top: 40%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image6 img {
  width: 300px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image6 img {
  opacity: 1;
}
.right6-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right6-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/mutaqina\ colored.png.png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left6-door {
  background-image: url("assets/mutaqina\ colored.png.png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left6-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right6-door {
  transform: rotateY(120deg);
}
/*qolbuna*/
/*barikna*/
.card-image7 {
  position: absolute;
  top: 40%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image7 img {
  width: 300px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image7 img {
  opacity: 1;
}
.right7-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right7-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/BARIKNA\(koloring\).png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left7-door {
  background-image: url("assets/BARIKNA\(koloring\).png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}
/* Efek pintu membuka */
.card-stack:hover .left7-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right7-door {
  transform: rotateY(120deg);
}
/*barikna*/
/*qabibilna*/
.card-image8 {
  position: absolute;
  top: 40%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image8 img {
  width: 300px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image8 img {
  opacity: 1;
}
.right8-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right8-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/colored\ korona.png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left8-door {
  background-image: url("assets/colored\ korona.png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}

/* Efek pintu membuka */
.card-stack:hover .left8-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right8-door {
  transform: rotateY(120deg);
}
/*qabilna*/
/*fesban*/
.card-image9 {
  position: absolute;
  top: 40%; /* atur agar tepat di tengah bawah tulisan */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-image9 img {
  width: 300px; /* atur sesuai ukuran yang kamu mau */
  height: auto;
  opacity: 0; /* awalnya tersembunyi */
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* saat kartu terbuka */
.card-stack.open .card-image9 img {
  opacity: 1;
}
.right9-door h1 {
  font-size: 40px;
  margin-bottom: 300px;
}
.right9-door {
  right: 0;
  transform-origin: center right;
  background-image: url("assets/FESBAN-\ COLOR.png");
  background-size: 200% 68%;
  background-position: right center;
  background-repeat: no-repeat;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
}
.left9-door {
  background-image: url("assets/FESBAN-\ COLOR.png");
  background-size: 200% 68%; /* agar satu gambar terbagi dua */
  background-position: left center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
}

/* Efek pintu membuka */
.card-stack:hover .left9-door {
  transform: rotateY(-120deg);
}

.card-stack:hover .right9-door {
  transform: rotateY(120deg);
}
/*fesban*/
.card-title1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}
.card-title1 h1 {
  font-family: "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6a4a87;
  position: relative;
}
.card-title1 h2 {
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #6a4a87;
  position: relative;
  margin-top: -10px;
}
.card-title1 p {
  margin-top: 275px;
  font-size: 18px;
  font-weight: 400;
  color: #6a4a87;
}
.card-title2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.card-title2 h1 {
  font-family: "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6a4a87;
  position: relative;
}
.card-title2 h2 {
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #6a4a87;
  position: relative;
  margin-top: -10px;
}
.card-title2 p {
  margin-top: 290px;
  font-size: 18px;
  font-weight: 400;
  color: #6a4a87;
}
.card-title3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.card-title3 h1 {
  font-family: "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6a4a87;
  position: relative;
}
.card-title3 h2 {
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #6a4a87;
  position: relative;
  margin-top: -10px;
}
.card-title3 p {
  margin-top: 275px;
  font-size: 18px;
  font-weight: 400;
  color: #6a4a87;
}
.card-title4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.card-title4 h1 {
  font-family: "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5f3a80;
  position: relative;
}
.card-title4 h2 {
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #5f3a80;
  position: relative;
  margin-top: -10px;
}
.card-title4 p {
  margin-top: 310px;
  font-size: 18px;
  font-weight: 400;
  color: #5f3a80;
}
.card-title5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.card-title5 h1 {
  font-family: "Times New Roman", serif;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5f3a80;
  position: relative;
}
.card-title5 h2 {
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #5f3a80;
  position: relative;
  margin-top: -10px;
}
.card-title5 p {
  margin-top: 310px;
  font-size: 18px;
  font-weight: 400;
  color: #5f3a80;
}
.card-title6 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.card-title6 h1 {
  font-family: "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5f3a80;
  position: relative;
}
.card-title6 h2 {
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #5f3a80;
  position: relative;
  margin-top: -10px;
}
.card-title6 p {
  margin-top: 290px;
  font-size: 18px;
  font-weight: 400;
  color: #5f3a80;
}
/* === LOCATION === */
.location {
  position: relative;
  background: url("LM100093.JPG") center/cover no-repeat;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.location .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.location-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.btn-location {
  display: inline-block;
  margin-top: 100px;
  padding: 12px 30px;
  background: #886eaf;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-location:hover {
  background: #22a36e;
}

.footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(-100px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
@media (max-width: 400px){
  /* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: -15px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 15px;
  align-items: center;
  height: 35px;
  width: auto;
  border-radius: 10px;
  transform: translateX(-10px);
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
  width: 310px;
}

.menu-box span {
  margin-left: 50px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
  display: none;
}

.menu-box a {
  font-family: "Poppins";
  color: #ff00f2;
  font-size: 10px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(25px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 3px 5px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.cta-text strong {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.cta-text p {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 50px;
}
  .hero-text {
    margin-top: 100px;
  }
  .hero-text h1 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
  .title-container {
    margin-top: 30px;
    padding: 0 8px;
  }

  .title-main {
    flex-direction: column; /* dari sejajar → bertumpuk */
    align-items: center;
    text-align: center;
  }

  .title-main h1 {
    font-size: 40px; /* dari 80px → kecil tapi terbaca */
    line-height: 1.1;
    word-break: break-word;
  }
  .subtitle {
  color: #ffffff;
  font-size: 0.75rem;
  opacity: 0.8;
}

  .title-sub {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .title-sub h2 {
    font-size: 23px;
    margin-top: 4px;
  }

  .title-sub p {
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .card-stack {
    width: 190px;
    height: 260px;
    margin: 20px auto;
  }

  /* === KARTU DALAM === */
  .card {
    padding: 10px;
    border-radius: 14px;
  }

  .card img,
  .card-a img,
  .card-b img {
    width: 140px;
    height: auto;
    margin: 0 auto 6px;
    margin-left: 2.5px;
  }
  .card .title {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
  .btn-more {
    font-size: 0.7rem;
    padding: 15px 15px;
    margin-top: 6px;
    transform: translateY(5px);
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
  }

  .card-b p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .card-b a {
    font-size: 9px !important;
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 200px; /* ruang besar untuk maskot */
    text-align: center;
  }

  /* === TOMBOL DI BAWAH === */
  .card-b a.btn-more {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
    border-radius: 8px;
    width: 90%;
    margin: 4px auto 0;
    text-align: center;
  }

  /* Bungkus tombol ke bawah */
  .card-b a.btn-more:first-of-type {
    margin-top: auto; /* dorong ke bawah */
  }
  .footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(10px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateX(140px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(50px);
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  transform: translateX(100px);
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
}






@media (max-width: 350px) {
   /* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: -15px;
  left: 5px;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 17px;
  align-items: center;
  height: 30px;
  width: auto;
  border-radius: 10px;
  transform: translateX(-15px);
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
  width: 280px;
}

.menu-box span {
  margin-left: 50px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
  display: none;
}

.menu-box a {
  font-family: "Poppins";
  color: #ff00f2;
  font-size: 10px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(20px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 15px;
  right: 6px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 3px 3px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.cta-text strong {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.cta-text p {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 50px;
}
  .hero-text {
    margin-top: 100px;
  }
  .hero-text h1 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
  .title-container {
    margin-top: 30px;
    padding: 0 8px;
  }

  .title-main {
    flex-direction: column; /* dari sejajar → bertumpuk */
    align-items: center;
    text-align: center;
  }

  .title-main h1 {
    font-size: 40px; /* dari 80px → kecil tapi terbaca */
    line-height: 1.1;
    word-break: break-word;
  }
  .subtitle {
  color: #ffffff;
  font-size: 0.75rem;
  opacity: 0.8;
}

  .title-sub {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .title-sub h2 {
    font-size: 23px;
    margin-top: 4px;
  }

  .title-sub p {
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .card-stack {
    width: 190px;
    height: 260px;
    margin: 20px auto;
  }

  /* === KARTU DALAM === */
  .card {
    padding: 10px;
    border-radius: 14px;
  }

  .card img,
  .card-a img,
  .card-b img {
    width: 140px;
    height: auto;
    margin: 0 auto 6px;
    margin-left: 0px;
  }
  .card .title {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
  .btn-more {
    font-size: 0.7rem;
    padding: 15px 15px;
    margin-top: 6px;
    transform: translateY(5px);
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
  }

  .card-b p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .card-b a {
    font-size: 9px !important;
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 200px; /* ruang besar untuk maskot */
    text-align: center;
  }

  /* === TOMBOL DI BAWAH === */
  .card-b a.btn-more {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
    border-radius: 8px;
    width: 90%;
    margin: 4px auto 0;
    text-align: center;
  }
     
  /* Bungkus tombol ke bawah */
  .card-b a.btn-more:first-of-type {
    margin-top: auto; /* dorong ke bawah */
  }
  .footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(0px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateX(120px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(28px);
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  transform: translateX(70px);
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
}




























@media (max-width: 300px) {
    /* ===== Navbar ===== */
.navbar {
  flex-wrap: wrap; /* Wajib */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  position: fixed;
  top: -15px;
  left: 2.5px;
  width: 100%;
  z-index: 1000;
}

/* Logo kiri */
.logo {
  position: absolute;
  left: 20px; /* sejajarkan sesuai padding navbar */
  flex: 1;
}

.logo img {
  margin-top: 17px;
  align-items: center;
  height: 30px;
  width: auto;
  border-radius: 10px;
  transform: translateX(-15px);
}

/* Menu box tengah */
.menu-box {
  margin-top: 50px;
  background: #ffffff;
  padding: 15px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  z-index: 2; /* biar tidak ketumpuk logo */
  width: 235px;
}

.menu-box span {
  margin-left: 50px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
  font-family: "Poppins";
  display: none;
}

.menu-box a {
  font-family: "Poppins";
  color: #ff00f2;
  font-size: 8px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(20px);
}
/* LANGUAGE SWITCHER – VERSI FINAL & CLEAN */
.lang-selector {
  position: fixed;
  top: 15px;
  right: 6px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  color: white;
  padding: 3px 3px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.lang-toggle:hover {
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  transform: translateY(-2px);
}

.lang-toggle img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 10px;
}

/* Dropdown */
.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, #c63bad, #7e2eb8);
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow when open */
.lang-selector.open .arrow {
  transform: rotate(180deg);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  flex-shrink: 0;
}
.cta-text strong {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.cta-text p {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 50px;
}
  .hero-text {
    margin-top: 100px;
  }
  .hero-text h1 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
  .title-container {
    margin-top: 30px;
    padding: 0 8px;
  }

  .title-main {
    flex-direction: column; /* dari sejajar → bertumpuk */
    align-items: center;
    text-align: center;
  }

  .title-main h1 {
    font-size: 28px; /* dari 80px → kecil tapi terbaca */
    line-height: 1.1;
    word-break: break-word;
  }
  .subtitle {
  color: #ffffff;
  font-size: 0.75rem;
  opacity: 0.8;
}

  .title-sub {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .title-sub h2 {
    font-size: 16px;
    margin-top: 4px;
  }

  .title-sub p {
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .card-stack {
    width: 170px;
    height: 240px;
    margin: 20px auto;
  }

  /* === KARTU DALAM === */
  .card {
    padding: 10px;
    border-radius: 14px;
  }

  .card img,
  .card-a img,
  .card-b img {
    width: 140px;
    height: auto;
    margin: 0 auto 6px;
    margin-left: -8px;
  }
  .card .title {
    font-size: 1.4rem;
    margin-bottom: 120px;
  }
  .btn-more {
    font-size: 0.7rem;
    padding: 15px 15px;
    margin-top: 6px;
    transform: translateY(5px);
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
  }

  .card-b p {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .card-b a {
    font-size: 9px !important;
  }
  .card-b h2 {
    font-size: 11px !important;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 200px; /* ruang besar untuk maskot */
    text-align: center;
  }

  /* === TOMBOL DI BAWAH === */
  .card-b a.btn-more {
    font-size: 0.65rem !important;
    padding: 5px 8px !important;
    border-radius: 8px;
    width: 90%;
    margin: 4px auto 0;
    text-align: center;
  }

  /* Bungkus tombol ke bawah */
  .card-b a.btn-more:first-of-type {
    margin-top: auto; /* dorong ke bawah */
  }
  .footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
  transform: translateX(0px);
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateX(90px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
  transform: translateX(10px);
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 30px;
  height: 20px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  transform: translateX(50px);
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
}
