/* ======================================================
   PACKAGE HERO SLIDER
====================================================== */
.package-hero-slider {
  position: relative;
  width: 100%;
  height: min(90vh, 820px);
  overflow: hidden;
  background: #000;
}

.package-hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.package-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.package-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.package-hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  z-index: 2;
}

.package-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-hero-desc {
  max-width: 720px;
  margin-inline: auto;
  opacity: 0.9;
  line-height: 1.5;
}

/* Navigation */
.package-hero-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  cursor: none;
  display: grid;
  place-items: center;
  z-index: 10;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.package-hero-nav:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.05);
}

.package-hero-nav--prev {
  left: 1.5rem;
}

.package-hero-nav--next {
  right: 1.5rem;
}

/* Arrow */
.package-hero-arrow-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dots */
.package-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.package-hero-dot {
  width: 10px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.package-hero-dot.is-active {
  background: #007cff;
}

/* ======================================================
   PACKAGE DESCRIPTION
====================================================== */

/* ==============================
   DESKRIPSI PAKET ACARA
================================ */

/* .package-description {
  padding: 80px 24px;
} */

.package-description__container {
  /* max-width: 1200px;
  margin: 0 auto; */

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

/* TITLE */
.package-description__title {
  display: flex;
  flex-direction: column;

  align-items: flex-end; /* 👈 bikin title mepet kanan */
  text-align: right; /* 👈 teks rata kanan */
  line-height: 1;
}

.package-description__title-line {
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* GRADIENT TEXT */
/* .package-description__title-line.is-gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #a855f7 50%, #fb7185 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

/* CONTENT */
.package-description__content {
  max-width: 680px;
}

.package-description__lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
  /* color: #111827; */
}

.package-description__text {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .package-description__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .package-description__title-line {
    font-size: 48px;
  }
}

/* ======================================================
   STATISTIK PAKET ACARA
====================================================== */

/* ==============================
   STATISTIK PAKET ACARA
================================ */
.statistik-paket-acara__card {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;

  padding: 56px;
  border-radius: 28px;

  background: linear-gradient(135deg, #2bb3ff 0%, #c77dff 50%, #ff9f6e 100%);

  /* color: #111; */
  color: #fff;
}

/* ==============================
   LEFT VISUAL
================================ */

.statistik-paket-acara__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.statistik-paket-acara__visual img {
  width: 240px;
  height: auto;
}

/* NUMBER */
.statistik-paket-acara__number {
  display: flex;
  flex-direction: column;
}

.statistik-paket-acara__value {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 600;
  line-height: 1;
}

.statistik-paket-acara__label {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

/* ==============================
   RIGHT CONTENT
================================ */

.statistik-paket-acara__content {
  max-width: 420px;
}

.statistik-paket-acara__content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .statistik-paket-acara__card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }

  .statistik-paket-acara__visual {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================================
   WHY US
====================================================== */

.why-us__grid {
  /* max-width: 1280px;
  margin: 0 auto; */
  padding: 40px 0;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

/* ==============================
   ITEM
================================ */

.why-us__item {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 32px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ACTIVE CARD */
.why-us__item.is-active {
  background: linear-gradient(135deg, #3bbcff 0%, #b57cff 50%, #ff9b7a 100%);
  color: #ffffff;
}

/* ==============================
   ICON
================================ */

.why-us__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
}

.why-us__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==============================
   TEXT
================================ */

.why-us__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ==============================
   HOVER (Optional)
================================ */

.why-us__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   BENEFITS SECTION
====================================================== */

/* ===============================
   WHY US ACCORDION
================================ */
/* .why-us-accordion {
  padding: 72px 24px;
} */

.why-us-accordion__wrapper {
  max-width: 1200px;
  height: 680px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-us-accordion__image {
  width: 100%;
  max-width: 460px; /* sesuaikan layout kamu */
  height: 540px; /* bikin TINGGI → efek memanjang */
  border-radius: 24px;
  overflow: hidden;

  display: flex;
  justify-self: end;
}

/* IMAGE */
.image-benefit {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* ===============================
   ACCORDION ITEM
================================ */
.why-us-item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.why-us-item.is-active {
  background: linear-gradient(135deg, #3bbcff 0%, #c77dff 50%, #ff9b7a 100%);
  color: #ffffff;
}

.why-us-header {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: none;
  cursor: none;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: stretch;
  gap: 16px;

  font-size: 16px;
  font-weight: 600;
}

.why-us-title {
  text-align: left;
}

.why-us-icon {
  font-size: 20px;
  width: 3.25rem;
}

/* TOGGLE */
.why-us-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-us-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.why-us-item.is-active .why-us-toggle {
  transform: rotate(180deg);
}

/* CONTENT */
.why-us-content {
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;

  transition:
    max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    padding 0.4s ease;
}

.why-us-item.is-active .why-us-content {
  max-height: 160px;
  opacity: 1;
  padding: 0 24px 24px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .why-us-accordion__wrapper {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   PAKET ACARA
====================================================== */

/* ==============================
   SECTION
============================== */
.event-section {
  padding: 64px 0;
}

/* ==============================
   GRID
============================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   CARD
============================== */
.event-card {
  background: #eef5ff;
  border-radius: 24px;

  display: flex;
  flex-direction: column;
  height: 100%; /* 🔥 kunci equal height */

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ==============================
   IMAGE
============================== */
.event-image {
  position: relative;
  aspect-ratio: 4 / 3; /* 🔥 lebih modern & konsisten */
  overflow: hidden;
  flex-shrink: 0;
}

/* fallback lama */
@supports not (aspect-ratio: 1 / 1) {
  .event-image {
    height: 280px;
  }
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.06);
}

/* ==============================
   TAG (ICON + TEXT)
============================== */
.event-tag {
  position: absolute;
  top: 16px;
  right: 16px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;
  color: #111;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.event-tag img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ==============================
   BODY
============================== */
.event-body {
  padding: 32px 38px;

  display: flex;
  flex-direction: column;
  gap: 22px;

  flex-grow: 1; /* 🔥 isi fleksibel */
}

.event-body-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-body-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.event-body-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* ==============================
   BUTTON
============================== */
.event-btn {
  margin-top: auto; /* 🔥 CTA selalu di bawah */
  width: fit-content;

  padding: 10px 16px;
  background: #007cff;
  color: #fff;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.event-btn:hover {
  background: #005fd1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 124, 255, 0.35);
}

/* ==============================
   MODAL BASE
============================== */
/* ======================================================
   EVENT DETAIL MODAL — FINAL
====================================================== */

/* ==============================
   MODAL BASE
============================== */
.event-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.event-detail-modal.is-open {
  display: block;
}

/* OVERLAY */
.event-detail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* ==============================
   CARD
============================== */
.event-detail-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
}

.event-detail-card {
  position: relative;
  max-width: 1100px;
  max-height: 650px;
  margin: 0 auto;

  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;

  display: grid;

  grid-template-columns: 420px 1fr;
  animation: eventModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes eventModalIn {
  from {
    transform: translateY(48px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==============================
   CLOSE BUTTON
============================== */
.event-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  line-height: 1;

  width: 42px;
  height: 42px;
  border-radius: 99%;
  border: none;

  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 22px;
  /* font-weight: 600; */
  cursor: none;

  /* display: flex; */
  align-items: center;
  justify-content: center;
}

/* ICON */
.event-detail-close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #ffffff;

  /* 👇 INI YANG BIKIN OPTICALLY CENTER */
  /* transform: translate(1px, 1px); */
}

/* ==============================
   LEFT IMAGE
============================== */
.event-detail-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.event-detail-image img.detail-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.event-detail-badge {
  position: absolute;
  top: 22px;
  left: 26px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  color: #111;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.event-detail-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ==============================
   RIGHT CONTENT
============================== */
.event-detail-content {
  padding: 68px 46px 42px;
  display: flex;
  flex-direction: column;
}

/* ==============================
   HEADER (TITLE + LOGO)
============================== */
.event-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 16px; */
  margin-bottom: 12px;
  padding-right: 2rem; /* beri padding kanan untuk memberi ruang antara title dan logo */
}

/* TITLE */
.event-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* LOGO WRAPPER */
.event-detail-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* LOGO IMAGE */
.event-detail-logos img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.event-detail-logos img:first-child {
  height: 20px; /* lebih kecil dari 26px */
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .event-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .event-detail-logos {
    align-self: flex-end;
  }
}

.event-detail-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 24px;
}

/* ==============================
   BLOCK
============================== */
.event-detail-block {
  margin-bottom: 24px;
}

.event-detail-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

/* ==============================
   COCOK UNTUK (ICON IMAGE)
============================== */
.event-detail-cocok {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-detail-cocok li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.event-detail-cocok img {
  width: 32;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ==============================
   GRID — BENEFIT & INFO PAKET
============================== */
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

/* BENEFIT */
.event-detail-benefit {
  padding-left: 18px;
  margin: 0;

  list-style: circle;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* ==============================
   INFO PAKET BOX
============================== */
.event-detail-info {
  background: #fff3cf;
  border-radius: 20px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-detail-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-detail-price {
  padding-left: 18px;
  margin: 0 0 20px 0;

  list-style: circle;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.price-bold {
  font-weight: 600;
  color: #111;
}

/* CTA */
.event-detail-info .btn {
  margin-top: auto;
  width: fit-content;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .event-detail-card {
    grid-template-columns: 1fr;
    max-width: 92%;
  }

  .event-detail-image {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .event-detail-content {
    padding: 28px 24px;
  }

  .event-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-detail-title {
    font-size: 24px;
  }
}

.section.faq-section {
  padding-bottom: 0;
}

/* ======================================================
   ABOUT CTA
====================================================== */

.about-cta {
  /* padding-top: 96px; */
  padding-bottom: 96px;
}

/* WRAPPER */
.about-cta-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/*  GRID  */

.about-cta-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  justify-content: center;
}

/*  VIDEO  */

.about-cta-media {
  position: relative;
  height: 520px;

  border-radius: 28px;
  overflow: hidden;
  background: #000;
  z-index: 4;

  display: grid;
  place-items: center;
}

.about-cta-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.about-cta-video-toggle {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;

  cursor: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.about-cta-video-toggle:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.75);
}

/*  CONTENT CARD  */

.about-cta-card {
  margin-left: -14px;
  padding: 32px 224px 32px 54px;
  height: 400px;
  background: linear-gradient(135deg, #eef5ff, #f7f0ff);
  /* border-radius: 40px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px; */
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-cta-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-cta-desc {
  font-size: 16px;
  /* color: #555; */
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-cta-actions {
  display: flex;
  gap: 16px;
}

/*  MASKOT  */

.about-cta-mascot {
  position: absolute;
  right: -90px;
  bottom: 52px;
  /* transform: scaleX(-1); */
  width: 400px;
  max-width: none;
  pointer-events: none;
  z-index: 3;
}

/* RESPONSIVE  */

@media (max-width: 900px) {
  .about-cta-wrapper {
    padding: 32px 16px;
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-media {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
  }

  .about-cta-card {
    margin-left: 0;
    padding: 40px 32px;
  }

  .about-cta-mascot {
    display: none;
  }
}

.about-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("/img/wave-bg.png") center / cover no-repeat; */
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.about-cta-card {
  position: relative;
  overflow: visible;
  /* border-radius: 28px; */

  /* padding: 64px 64px 64px 280px; */
  /* min-height: 360px; */

  background:
    /* url("/img/wave-bg.png"), */ linear-gradient(
    83deg,
    rgb(255, 146, 113, 0.35) 15.23%,
    rgb(224, 130, 255, 0.35) 35.95%,
    rgb(49, 176, 255, 0.35) 65%,
    rgb(255, 255, 255, 1) 80%
  );

  background-position: center, center, center;

  background-size: cover, cover, cover;

  background-repeat: no-repeat, no-repeat, no-repeat;
}

.about-cta-card > * {
  position: relative;
  z-index: 2; /* ⬅️ PALING ATAS */
}

/* 
   TICKET PERFORATION
 */

.about-cta-card.is-ticket {
  /* TUNABLE VARIABLES */
  --cut-width: 22px; /* kedalaman potongan */
  --cut-height: 12px; /* tinggi pill */
  --cut-gap: 16px; /* jarak antar pill */
  --cut-radius: 46px; /* roundness pill */

  -webkit-mask:
    linear-gradient(#000 0 0) right,
    repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent var(--cut-gap),
        #000 var(--cut-gap),
        #000 calc(var(--cut-gap) + var(--cut-height))
      )
      left / var(--cut-width) 100% no-repeat;

  -webkit-mask-composite: destination-out, source-over;

  mask:
    linear-gradient(#000 0 0) right,
    repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent var(--cut-gap),
        #000 var(--cut-gap),
        #000 calc(var(--cut-gap) + var(--cut-height))
      )
      left / var(--cut-width) 100% no-repeat;

  mask-composite: exclude;
}

/* ======================================================
   PAKET – ADVANTAGES
====================================================== */

.paket-advantages__grid {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

/* ==============================
   ITEM
================================ */

.paket-advantages__item {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 32px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.paket-advantages__item.is-active {
  background: linear-gradient(135deg, #3bbcff 0%, #b57cff 50%, #ff9b7a 100%);
  color: #ffffff;
}

/* ==============================
   ICON
================================ */

.paket-advantages__icon {
  width: 156px;
  height: 156px;
}

.paket-advantages__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==============================
   TEXT
================================ */

.paket-advantages__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ==============================
   HOVER
================================ */

.paket-advantages__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .paket-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .paket-advantages__grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================================
   BRANCH SELECTION MODAL
====================================================== */
.branch-selection-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.branch-selection-modal.is-open {
  display: block;
}
.branch-selection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.branch-selection-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 24px;
}
.branch-selection-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  animation: eventModalIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.branch-selection-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: #111;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.branch-selection-close:hover {
  background: rgba(0, 0, 0, 0.2);
}
.branch-selection-content-wrapper {
  padding: 40px 32px 32px;
  text-align: center;
}
.branch-selection-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.branch-selection-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}
.branch-selection-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.branch-selection-actions .btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 12px;
}
