@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Manrope:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: #000;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 46px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e8e8e8;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
}

.brand-logo {
  display: block;
  width: auto;
  height: 86px;
  max-width: 240px;
  object-fit: contain;
}

.brand-mark {
  width: 40px;
  height: 40px;

  display: inline-grid;
  place-items: center;

  color: #fff;
  background: #000;
  border-radius: 50%;

  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}

.brand-text {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 26px;

  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.nav-link,
.nav-trigger {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  border: 0;
  background: transparent;
  color: #000;

  font-size: 15px;
  font-weight: 500;

  cursor: pointer;
  transition: color .2s ease, font-weight .2s ease;
}

.nav-link.active,
.nav-trigger.active {
  color: #000;
  font-weight: 900;
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  min-width: auto;
  gap: 7px;
  line-height: 1;
}

.nav-arrow {
  width: 7px;
  height: 7px;
  display: inline-block;

  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;

  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 80;

  width: 330px;
  max-height: 68vh;
  overflow-y: auto;

  padding: 12px;

  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: .18s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-panel p {
  margin: 0 0 8px;
  padding: 8px 10px;

  color: #000;
  opacity: .55;

  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 700;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 12px 10px;

  color: #000;
  border-radius: 12px;
  transition: .18s ease;
}

.dropdown-link:hover {
  opacity: 1;
  background: #f4f4f4;
}

.dropdown-link span {
  flex: 1;
  min-width: 0;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-link small {
  flex: 0 0 auto;

  color: #000;
  opacity: .48;

  font-size: 11px;
  font-weight: 500;

  white-space: nowrap;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 450px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  padding: 66px 28px;

  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .45)),
    url('https://www.civitatis.com/f/pois/ChIJmcj9QppiGWAR36TzFsn8oaY.jpg') center 40%/cover;

  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .18),
    rgba(0, 0, 0, .48)
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;

  text-transform: uppercase;
  letter-spacing: .18em;

  font-size: 11px;
  font-weight: 600;
  color: inherit;
}

.eyebrow.dark {
  color: #000;
}

.hero-content h1,
.hero-title {
  margin: 0 0 14px;
  color: #fff;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.script-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: none;
}

.bold-text {
  font-family: Manrope, Poppins, Arial, sans-serif;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: none;
}

.cursor {
  display: inline-block;

  width: 1.5px;
  height: 0.90em;

  margin-left: 5px;

  background: #fff;
  color: transparent;

  transform: translateY(4px);

  animation: blink .8s infinite;
}

@keyframes blink {
  0%, 45% {
    opacity: 1;
  }

  46%, 100% {
    opacity: 0;
  }
}

.hero-copy {
  max-width: 600px;
  margin: 0 auto 28px;

  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 38px;
}

.btn {
  width: 125px;
  min-height: 42px;

  padding: 0 14px;

  border: 1px solid #fff;
  border-radius: 0;

  background: transparent;
  color: #fff;

  cursor: pointer;

  font-size: 12px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease;
}

/* Button kiri */
.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Button kanan */
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Animasi hover sama macam filter: naik sikit */
.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
}

/* Hover button kiri: jadi transparent, tulisan putih, border putih */
.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Hover button kanan: jadi putih, tulisan hitam */
.btn-ghost:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.hero-stat-card {
  display: none;
}

/* =========================
   SECTION GENERAL
========================= */

.intro-section,
.package-section,
.quote-section {
  padding: 82px 46px;
}

.section-head {
  max-width: 1320px;
  margin: 0 auto 34px;
}

.section-head.narrow {
  max-width: 720px;
  text-align: center;
}

.section-head h2,
.quote-card h2 {
  margin-bottom: 22px;
  font-family: Poppins, sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  word-spacing: 0.12em;
  color: #fff;
}

.section-head p,
.quote-card p {
  color: #fff;
  opacity: 1;
  line-height: 1.75;
}

.quote-card h2,
.quote-eyebrow,
.quote-subtitle {
  color: #fff;
  opacity: 1;
}
/* =========================
   BENEFIT SECTION
========================= */

.benefit-grid {
  max-width: 1320px;
  margin: 40px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-grid article {
  min-height: 200px;
  padding: 28px;

  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 32px;

  color: #000;
  font-size: 13px;
  font-weight: 600;
}

.benefit-grid h3 {
  margin-bottom: 10px;

  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;

  color: #000;
}

.benefit-grid p {
  margin-bottom: 0;

  color: #000;
  opacity: .65;
  line-height: 1.7;
}

/* =========================
   PACKAGE SECTION
========================= */

.package-section {
  background: #fff;
}

/* Title center, search hujung kanan */
.package-head {
  width: min(92vw, 1240px);
  margin: 0 auto 34px;

  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 22px;

  text-align: center;
}

.package-head h2 {
  grid-column: 2;
  justify-self: center;
  margin: 0;

  font-family: 'Open Sans', 'Manrope', Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 38px;
  text-transform: none;

  color: #111;
}

.search-wrap {
  grid-column: 3;
  justify-self: end;

  position: relative;
  width: 260px;
  flex: 0 0 260px;

  transform: none;
}

.search-wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;

  width: 18px;
  height: 18px;

  transform: translateY(-50%);
  pointer-events: none;

  background-image: url("https://cdn-icons-png.flaticon.com/128/3031/3031293.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.search-wrap input {
  width: 100%;
  height: 38px;

  padding: 0 46px 0 18px;

  border: 1px solid #000;
  border-radius: 999px;
  outline: none;

  background: #fff;
  color: #000;

  font-size: 13px;
  font-weight: 400;

  box-shadow: none;
}

.search-wrap input::placeholder {
  color: #777;
}

.search-wrap input:hover,
.search-wrap input:focus {
  border-color: #000;
  box-shadow: none;
}

/* Card pakej gambar */
.package-grid {
  width: min(92vw, 1240px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;

  align-items: start;
}

.category-card {
  position: relative;

  min-height: 230px;
  padding: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  overflow: hidden;

  border: 0;
  border-radius: 16px;

  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;

  color: #fff;

  cursor: pointer;
  outline: none;

  box-shadow: none;
  transform: none;

  transition:
  min-height .5s cubic-bezier(.22, .8, .22, 1),
  opacity .25s ease;
}

/* Mobile / default: buka bila ada class open */
.category-card.open {
  height: auto;
  min-height: 390px;
  transform: none;
  border-color: transparent;
}

/* Desktop sahaja: buka bila hover */
@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    height: auto;
    min-height: 390px;
    transform: none;
    border-color: transparent;
  }
}

/* Gelapkan bahagian kiri sahaja supaya tulisan jelas */
.category-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, .48) 0%,
    rgba(0, 0, 0, .34) 22%,
    rgba(0, 0, 0, .16) 45%,
    rgba(0, 0, 0, .04) 65%,
    rgba(0, 0, 0, 0) 100%
  );

  z-index: 1;
  pointer-events: none;
}

/* Tiada lapisan gelap pada keseluruhan gambar */
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: transparent;

  z-index: 2;
  pointer-events: none;
}

.category-card.hide {
  display: none;
}

/* Buang hover lama card naik */
.category-card:hover {
  transform: none;
}

/* Content duduk belah atas */
.card-content {
  position: relative;
  z-index: 3;

  width: 100%;
  padding: 24px;

  color: #fff;
}

/* Tulisan atas gambar */
.card-main-info {
  max-width: 88%;
}

.category-card h3 {
  margin: 0 0 7px;

  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;

  color: #fff;
}

.category-group {
  margin: 0;

  color: #fff;
  opacity: .8;

  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: none;
}

/* Buang benda lama kalau masih ada */
.card-top,
.details-toggle {
  display: none;
}

/* Detail pakej hidden dulu */
.package-list {
  display: grid;
  gap: 0;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  margin-top: 0;

  transform: translateY(10px);

  transition:
    max-height .44s cubic-bezier(.22, .8, .22, 1),
    opacity .28s ease,
    margin-top .34s ease,
    transform .34s ease;
}

/* Mobile / default: keluar bila klik */
.category-card.open .package-list {
  max-height: 900px;
  opacity: 1;
  margin-top: 22px;
  transform: translateY(0);
  overflow: visible;
  padding-right: 0;
}

/* Desktop sahaja: keluar bila hover */
@media (hover: hover) and (pointer: fine) {
  .category-card:hover .package-list {
    max-height: 900px;
    opacity: 1;
    margin-top: 22px;
    transform: translateY(0);
    overflow: visible;
    padding-right: 0;
  }
}

.package-item {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;

  padding: 13px 10px 12px;
  margin: 0 -10px;

  border-top: 1px solid rgba(255, 255, 255, .26);
  border-radius: 0;

  color: #fff;
  text-decoration: none;

  cursor: pointer;
  overflow: visible;

  transition:
    transform .22s ease,
    padding-top .22s ease,
    padding-bottom .22s ease;
}

.package-item::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 0;
  right: 0;

  height: 1px;

  background: rgba(255, 255, 255, .26);

  transition:
    height .22s ease,
    background .22s ease,
    box-shadow .22s ease;

  z-index: 0;
}

.package-item:hover {
  color: #fff;
  transform: translateY(-2px);
  padding-top: 10px;
  padding-bottom: 15px;
}

.package-item:hover::before {
  height: 1.5px;
  background: #e82328;
  box-shadow: none;
}

.package-item:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .85);
  outline-offset: 2px;
}

.package-item div,
.package-item > span {
  position: relative;
  z-index: 1;
}

.package-item strong {
  display: block;
  margin-bottom: 4px;

  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;

  transition:
    font-weight .22s ease,
    transform .22s ease,
    letter-spacing .22s ease;
}

.package-item em {
  display: block;

  color: #fff;
  opacity: .72;

  font-size: 10.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;

  transition:
    opacity .22s ease,
    transform .22s ease;
}

.package-item > span {
  color: #fff;
  opacity: .9;

  font-size: 10.5px;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
  text-transform: none;

  transition:
    opacity .22s ease,
    transform .22s ease,
    font-weight .22s ease;
}

.package-item:hover strong {
  color: #fff;
  opacity: 1;
  font-weight: 800;
  letter-spacing: -.01em;
  transform: translateY(-2px);
}

.package-item:hover em,
.package-item:hover > span {
  color: #fff;
  opacity: 1;
  font-weight: 600;
  transform: translateY(-2px);
}

.empty-state {
  display: none;

  max-width: 520px;
  margin: 40px auto 0;
  padding: 30px;

  text-align: center;

  border: 1px dashed #dcdcdc;
  border-radius: 22px;

  background: #fff;
}

.empty-state.show {
  display: block;
}

.empty-state h3 {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 500;
  color: #000;
}

.empty-state p {
  margin-bottom: 0;
  color: #000;
  opacity: .6;
}

/* =========================
   QUOTE SECTION
========================= */

.quote-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #111;
}

.quote-card {
  width: 100%;
  min-height: 300px;
  margin: 0;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 68px 46px;

  border-radius: 0;
  border: none;
  background: #111;
  text-align: center;
}

.quote-bg {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .62) 0%,
      rgba(0, 0, 0, .58) 35%,
      rgba(0, 0, 0, .58) 65%,
      rgba(0, 0, 0, .62) 100%
    ),
    url("https://akudanistanbul.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-9-2026-03_24_38-PM.png");

  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;

  z-index: 1;
}

/* Buang blur */
.quote-bg::before {
  display: none;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .18);
  z-index: 2;
}

.quote-content {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-eyebrow {
  margin: 0 0 8px;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;

  color: #fff;
  opacity: 1;
}

.quote-content h2 {
  margin: 0 0 30px;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: none;

  color: #fff;
}

.quote-subtitle {
  margin: 0 0 28px;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;

  color: #fff;
  opacity: 1;
}

.quote-button {
  min-width: 125px;
  min-height: 42px;

  margin-top: 18px;

  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #fff;
  border-radius: 0;

  background: transparent;
  color: #fff;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  transition:
    transform .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease;
}

.quote-button:hover {
  transform: translateY(-3px);
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 38px 46px;

  text-align: center;

  color: #000;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social-text {
  margin: 0 0 16px;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;

  color: #000;
  opacity: .72;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-bottom: 18px;
}

.footer-social-link {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;

  overflow: hidden;

  padding: 0 9px;

  border: 1px solid #dedede;
  border-radius: 999px;

  background: #fff;
  color: #111;

  transition:
    width .28s ease,
    gap .28s ease,
    padding .28s ease,
    border-color .2s ease,
    color .2s ease;
}

.footer-social-link:hover {
  width: 116px;
  gap: 8px;
  padding: 0 14px 0 10px;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;

  display: block;

  background: currentColor;

  -webkit-mask-size: contain;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;
}

.social-name {
  opacity: 0;
  transform: translateX(-2px);

  white-space: nowrap;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;

  transition:
    opacity .22s ease,
    transform .22s ease;
}

.footer-social-link:hover .social-name {
  opacity: 1;
  transform: translateX(0);
}

/* Instagram */
.footer-social-link.instagram .social-icon {
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg");
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg");
}

.footer-social-link.instagram:hover {
  border-color: #E4405F;
  color: #E4405F;
}

/* Facebook */
.footer-social-link.facebook .social-icon {
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/facebook.svg");
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/facebook.svg");
}

.footer-social-link.facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
}

/* TikTok */
.footer-social-link.tiktok .social-icon {
  -webkit-mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/tiktok.svg");
  mask-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/tiktok.svg");
}

.footer-social-link.tiktok:hover {
  border-color: #ff0050;
  color: #ff0050;
}

.footer-copy {
  margin: 0;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.6;

  color: #000;
  opacity: .55;
}

/* =========================================================
   ICON MENU DISEMBUNYIKAN PADA DESKTOP
========================================================= */

.mobile-menu-toggle,
.mobile-menu-overlay {
  display: none;
}


/* =========================================================
   MOBILE HEADER / NAVIGATION
   600PX KE BAWAH
========================================================= */

@media (max-width: 600px) {

  body.mobile-menu-open {
    overflow: hidden;
  }

/* =========================
   NAVBAR UTAMA
========================= */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10002;

  width: 100%;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 0;
  padding: 0 10px 0 4px;

  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #e7e7e7;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header .brand {
  position: relative;
  z-index: 10003;

  display: flex;
  align-items: center;
  flex: 0 0 auto;

  margin: 0;
  padding: 0;

  transform: none;
}

.site-header .brand-logo {
  display: block;

  width: auto;
  height: 50px;
  max-width: 145px;

  margin: 0;
  padding: 0;

  object-fit: contain;
}

.site-header .brand-mark,
.site-header .brand-text {
  display: none;
}

/* =========================
   BUTTON MENU
========================= */

.mobile-menu-toggle {
  position: relative;
  z-index: 10004;

  width: 36px;
  height: 36px;
  flex: 0 0 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 8px;

  border: 0;
  outline: 0;

  background: transparent;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle img {
  display: block;

  width: 18px;
  height: 18px;

  object-fit: contain;

  filter: brightness(0);

  pointer-events: none;
}

/* =========================
   OVERLAY
========================= */

.mobile-menu-overlay {
  position: fixed;
  top: 62px;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 10000;

  display: block;

  background: rgba(0, 0, 0, .38);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .28s ease,
    visibility .28s ease;
}

body.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================
   SIDEBAR NAVBAR
========================= */

.top-nav {
  position: fixed;
  top: 62px;
  right: 0;
  z-index: 10001;

  width: 80%;
  max-width: 320px;

  height: calc(100vh - 62px);
  height: calc(100dvh - 62px);

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;

  gap: 0;

  margin: 0;
  padding: 10px 16px 26px;

  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;

  background: #fff;
  color: #111;

  box-shadow: -14px 8px 40px rgba(0, 0, 0, .16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(105%);

  transition:
    transform .34s cubic-bezier(.22, 1, .36, 1),
    opacity .2s ease,
    visibility .34s ease;
}

body.mobile-menu-open .top-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(0);
}

  /* =========================
     MENU UTAMA
  ========================= */

  .top-nav .nav-link,
  .top-nav .nav-trigger {
    width: 100%;
    min-width: 0;
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin: 0;
    padding: 0 3px;

    border: 0;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;

    background: transparent;
    color: #111;

    font-family: 'Manrope', Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.35;

    text-align: left;
    white-space: nowrap;

    cursor: pointer;
  }

  .top-nav .nav-link:hover,
  .top-nav .nav-trigger:hover,
  .top-nav .nav-link.active,
  .top-nav .nav-trigger.active {
    color: #000;
    font-weight: 800;
    opacity: 1;
  }

  .nav-dropdown {
    position: relative;

    width: 100%;

    display: block;
  }

  .nav-dropdown::after {
    content: none;
    display: none;
  }

  .nav-arrow {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;

    display: block;

    margin-right: 4px;

    border-right: 1.4px solid #111;
    border-bottom: 1.4px solid #111;

    transform: rotate(45deg) translateY(-2px);

    transition: transform .24s ease;
  }

  .nav-dropdown.mobile-dropdown-open .nav-arrow {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  /* =========================
     DROPDOWN
  ========================= */

  .dropdown-panel {
    position: static;

    width: 100%;
    max-width: none;
    max-height: 0;

    display: block;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 0;
    border-radius: 0;

    background: #f7f7f7;

    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    transition:
      max-height .36s ease,
      padding .36s ease;
  }

  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;
  }

  .nav-dropdown.mobile-dropdown-open .dropdown-panel {
    max-height: 820px;

    padding: 4px 8px 8px;
  }

  .dropdown-panel p {
    margin: 0;
    padding: 9px 5px 5px;

    color: #777;
    opacity: 1;

    font-size: 7.5px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .1em;

    text-transform: uppercase;
  }

  .dropdown-link {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;

    gap: 7px;

    margin: 0;
    padding: 9px 5px;

    border: 0;
    border-bottom: 1px solid #e3e3e3;
    border-radius: 0;

    background: transparent;
    color: #111;
  }

  .dropdown-link:last-child {
    border-bottom: 0;
  }

  .dropdown-link:hover,
  .dropdown-link.active {
    background: #ececec;
    color: #000;
  }

  .dropdown-link span {
    flex: 1 1 auto;
    min-width: 0;

    color: #111;

    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.4;

    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .dropdown-link.active span {
    color: #000;
    font-weight: 800;
  }

  .dropdown-link small {
    flex: 0 0 auto;

    margin-left: 4px;

    color: #777;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.3;

    white-space: nowrap;
  }

  /* =========================
     ICON X
  ========================= */

  body.mobile-menu-open .mobile-menu-toggle img {
    display: none;
  }

  body.mobile-menu-open .mobile-menu-toggle::before,
  body.mobile-menu-open .mobile-menu-toggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 18px;
    height: 1.6px;

    background: #111;
    border-radius: 999px;
  }

  body.mobile-menu-open .mobile-menu-toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.mobile-menu-open .mobile-menu-toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}


/* =========================================================
   INDEX MOBILE FULL LAYOUT
   600PX KE BAWAH
========================================================= */

@media (max-width: 600px) {

  html,
  body {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  main {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
  }


  /* =========================================================
     HERO / HEADER UTAMA
  ========================================================= */

  .hero-section {
  position: relative;

  width: 100%;
  max-width: 100%;

  min-height: 370px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 38px 18px;

  overflow: hidden;

  color: #fff;
  text-align: center;
}

  .hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .2) 0%,
        rgba(0, 0, 0, .38) 50%,
        rgba(0, 0, 0, .58) 100%
      );
  }

  .hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    text-align: center;
  }

  .hero-title {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 0;
  }

.script-text {
  width: 100%;

  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.08;

  text-align: center;
}

  .bold-text {
  width: 100%;

  font-size: 20px;
  line-height: 1.25;

  text-align: center;
}

  .typing-text {
    display: inline;
  }

  .cursor {
    width: 1.3px;
    height: .92em;

    margin-left: 3px;

    background: #fff;
    color: transparent;

    transform: translateY(3px);
  }

  /* =========================
     BUTTON HERO
  ========================= */

  .hero-actions {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;

    gap: 8px;

    margin: 27px 0 0;
  }

  .hero-actions .btn {
    width: 122px;
    min-width: 122px;
    min-height: 38px;

    padding: 0 10px;

    font-size: 10px;
    font-weight: 600;
  }

  .hero-stat-card {
    display: none;
  }


  /* =========================================================
     SECTION GENERAL
  ========================================================= */

  .intro-section,
  .package-section,
  .quote-section {
    width: 100%;
    max-width: 100%;

    margin: 0;
  }


  /* =========================================================
     PACKAGE SECTION
  ========================================================= */

  .package-section {
    padding: 44px 14px 54px;

    background: #fff;
  }

  .section-head.package-head,
  .package-head {
    width: 100%;
    max-width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 0 auto 24px;
    padding: 0;

    text-align: center;
  }

  .package-head h2 {
    width: 100%;

    margin: 0;

    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;

    text-align: center;
  }

  .search-wrap {
    position: relative;

    width: 100%;
    max-width: 100%;
    flex: none;

    grid-column: auto;
    justify-self: auto;

    margin: 0;
    padding: 0;

    transform: none;
  }

  .search-wrap::after {
    right: 14px;

    width: 15px;
    height: 15px;
  }

  .search-wrap input {
    width: 100%;
    height: 39px;

    padding: 0 40px 0 15px;

    font-size: 11px;
  }


  /* =========================================================
     GRID PAKEJ
  ========================================================= */

  .package-grid {
    width: 100%;
    max-width: 100%;

    display: grid;
    grid-template-columns: 1fr;

    gap: 14px;

    margin: 0;
    padding: 0;
  }

  .category-card {
    width: 100%;
    max-width: 100%;

    min-height: 195px;

    margin: 0;
    padding: 0;

    border-radius: 14px;

    background-size: cover;
    background-position: center;

    overflow: hidden;
  }

  .category-card.open {
    min-height: 330px;
  }

  .card-content {
    width: 100%;

    padding: 18px;
  }

  .card-main-info {
    max-width: 100%;
  }

  .category-card h3 {
    margin: 0 0 5px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
  }

  .category-group {
    font-size: 9.5px;
    line-height: 1.4;
  }

  .category-card.open .package-list {
    margin-top: 16px;
  }

  .package-item {
    width: 100%;

    grid-template-columns: minmax(0, 1fr) auto;

    gap: 9px;

    margin: 0 -6px;
    padding: 10px 6px;
  }

  .package-item strong {
    margin-bottom: 3px;

    font-size: 10.5px;
    line-height: 1.35;
  }

  .package-item em,
  .package-item > span {
    font-size: 9px;
    line-height: 1.35;
  }

  .empty-state {
    width: 100%;
    max-width: 100%;

    margin-top: 24px;
  }


  /* =========================================================
     QUOTATION SECTION
  ========================================================= */

  .quote-section {
    width: 100%;

    padding: 0;
    margin: 0;

    background: #111;
  }

  .quote-card {
    position: relative;

    width: 100%;
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 52px 18px;

    overflow: hidden;

    border: 0;
    border-radius: 0;

    background: #111;
    text-align: center;
  }

  .quote-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;
  }

  .quote-eyebrow {
    margin: 0 0 12px;

    font-family: 'Manrope', 'Poppins', Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #fff;
    opacity: 1;
  }

.quote-content h2 {
  width: 100%;
  max-width: 100%;

  margin: 0 0 18px;

  font-family: 'Manrope', 'Poppins', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;

  color: #fff;

  text-align: center;
  white-space: nowrap;
}

  .quote-button {
    width: auto;
    min-width: 125px;
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 14px 0 0;
    padding: 0 14px;

    border: 1px solid #fff;
    border-radius: 0;

    background: transparent;
    color: #fff;

    font-family: 'Manrope', 'Poppins', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;

    text-align: center;
    white-space: nowrap;

    cursor: pointer;

    transition:
      transform .22s ease,
      background .22s ease,
      color .22s ease,
      border-color .22s ease;
  }

  .quote-button:hover {
    transform: translateY(-2px);

    background: #fff;
    color: #000;
    border-color: #fff;
  }


  /* =========================================================
     FOOTER
  ========================================================= */

  .site-footer {
    width: 100%;

    padding: 30px 16px;
  }

  .footer-social-text {
    max-width: 330px;

    margin-bottom: 15px;

    font-size: 10.5px;
    line-height: 1.5;
  }

  .footer-socials {
    gap: 10px;

    margin-bottom: 15px;
  }

  .footer-social-link {
    width: 34px;
    height: 34px;

    padding: 0 8px;
  }

  .social-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .footer-copy {
    max-width: 330px;

    font-size: 9.5px;
    line-height: 1.5;
  }
}

/* =========================================================
   FIX MOBILE SIDEBAR BLOCKING PAGE
========================================================= */

@media (max-width: 600px) {
  body:not(.mobile-menu-open) {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body:not(.mobile-menu-open) .mobile-menu-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body:not(.mobile-menu-open) .top-nav {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(105%) !important;
  }

  body.mobile-menu-open .top-nav {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }

  .site-header {
    pointer-events: none;
  }

  .site-header .brand,
  .site-header .mobile-menu-toggle,
  body.mobile-menu-open .top-nav {
    pointer-events: auto;
  }

  .package-section,
  .package-grid,
  .category-card,
  .card-content,
  .package-list,
  .package-item {
    pointer-events: auto !important;
  }

  .package-section {
    position: relative;
    z-index: 1;
  }

  .package-grid {
    position: relative;
    z-index: 2;
  }

  .category-card {
    position: relative;
    z-index: 3;
  }

  .category-card.open {
    z-index: 4;
  }

  .card-content {
    position: relative;
    z-index: 5;
  }

  .package-list {
    position: relative;
    z-index: 6;
  }

.package-item {
  position: relative;
  z-index: 7;

  width: 100%;

  display: flex;
  align-items: flex-start;

  pointer-events: auto !important;
  touch-action: manipulation;
  cursor: pointer;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
}

.package-item > div {
  flex: 1 1 auto;
  min-width: 0;
}

.package-item > span {
  flex: 0 0 auto;
  margin-left: auto;

  text-align: right;
  white-space: nowrap;
}

  .category-card::before,
  .category-card::after,
  .package-item::before,
  .package-item::after {
    pointer-events: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

#packages {
  scroll-margin-top: 90px;
}

html {
  scroll-behavior: smooth;
}

#social-media {
  scroll-margin-top: 90px;
}