main {
  margin-top: 120px;
}

/* ======================================================
   FRUITCITY PARK HERO
====================================================== */

/* .park-hero {
  padding-top: 10rem; 
} */

.section.park-hero {
  padding-top: 0;
}

.park-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* ===============================
   DESKTOP LAYOUT
================================ */
@media (min-width: 992px) {
  .park-hero__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ===============================
   LEFT CONTENT
================================ */
.park-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.park-hero__logo {
  width: 220px;
  height: auto;
}

.park-hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.park-hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 480px;
  text-align: justify;
}

.btn-outline.btn-hero-fcp {
  width: fit-content;
}

/* ===============================
   CENTER VIDEO
================================ */
.park-hero__video-wrapper {
  display: flex;
  justify-content: center;
  position: relative; /* required for absolute button inside */
}

.fc-hero-video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;

  cursor: pointer;
  display: grid;
  place-items: center;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.fc-hero-video-toggle:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(0, 0, 0, 0.75);
}

.park-hero__video {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===============================
   RIGHT STATS
================================ */
.park-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.park-stat {
  background: #f3f3f3;
  padding: 1.5rem 1.25rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid #0000001f;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ======================================================
   PARK STAT WITH BACKGROUND IMAGE (SSS TIER)
====================================================== */

.park-stat {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Base background style */
.park-stat--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background-size: cover;
  /* background-position: 30% 60%; */
  background-repeat: no-repeat;

  opacity: 0.2;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

/* Soft gradient overlay */
.park-stat--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Hover depth effect */
.park-stat--bg:hover::before {
  transform: scale(1.08);
  opacity: 1;
}

/* ===============================
   INDIVIDUAL IMAGES
================================ */

.park-stat--wahana::before {
  background-image: url("/img/bg-fcp-page3.png");
}

.park-stat--outlet::before {
  background-image: url("/img/bg-fcp-page2.png");
}

.park-stat--visitor::before {
  background-image: url("/img/bg-fcp-page1.png");
}

.bgp-30-70::before {
  background-position: 30% 60%;
}

.bgp-20-40::before {
  background-position: 20% 40%;
}

.bgp-center::before {
  background-position: center;
}

.park-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.park-stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 1px rgba(0, 0, 0, 1);
}

.park-stat__label {
  font-size: 0.875rem;
  margin-top: 0.4rem;
  letter-spacing: 0.4px;
  color: #000;
}

/* LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA
LIST WAHANA */

.list-wahana-title {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.wahana-grid {
  display: grid;
  width: 1280px;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1200px) {
  .wahana-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .wahana-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wahana-card {
  position: relative;
  width: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
  justify-self: center;
}

.wahana-card {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.wahana-card.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wahana-card.is-visible {
  animation: wahanaFadeUp 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes wahanaFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wahana-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 8px #dfdfdf;
  pointer-events: none;
  z-index: 1;
}

.wahana-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.wahana-number {
  position: absolute;
  top: 14px;
  left: 14px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 16px;
  color: #2563eb;

  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #dbeafe);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);

  z-index: 4;
}

.wahana-badge-top {
  position: absolute;
  top: 14px;
  right: 14px;

  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;

  background: #3b82f6;
  color: #ffffff;
  border-radius: 999px;

  z-index: 4;
}

/* Variant Hijau (1 Coin) */
.wahana-badge-top.badge-terusan {
  background: #16a34a; /* hijau */
}

.wahana-bottom {
  position: relative;
  margin-top: -18px; /* overlap ke image */

  padding: 26px 18px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 1) 0%,
    rgba(37, 99, 235, 1) 100%
  );

  color: #ffffff;
  text-align: center;

  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;

  z-index: 0;
}

.wahana-ticket {
  margin-top: -36px;
  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;

  padding: 5px 14px;

  border: 1px solid #2563eb;
  background: #ffffff;
  color: #2563eb;
  border-radius: 999px;
}

.wahana-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.wahana-title span {
  color: #fde047;
}

.wahana-code {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.85;
}

.wahana-card.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wahana-card[data-type="terusan"] .wahana-bottom {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 1) 0%,
    rgba(22, 163, 74, 1) 100%
  );
}

.wahana-card[data-type="terusan"] .wahana-ticket {
  border-color: #16a34a;
  color: #16a34a;
}

.wahana-card {
  display: none;
}

.wahana-card.is-visible {
  display: block;
}

.wahana-load-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.btn-outline.wahana-load-btn {
  min-height: 3rem;
}
/* ======================================================
   FACILITIES GRID
====================================================== */

.section.section-facilities-activities {
  padding-bottom: 0;
}

.fc-facilities {
  padding-top: 2rem;
}

.fc-facilities-container {
  /* max-width: 1100px; */
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

/* Desktop 3 column */
@media (min-width: 768px) {
  .fc-facilities-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ======================================================
   CARD
====================================================== */

.fc-facility-card {
  display: flex;
  align-items: center;
  gap: 1rem;

  background: #e2e9f5;
  color: #303135;

  padding: 1rem 1.5rem;
  border-radius: 18px;

  /* transition: all 0.3s ease; */
  /* cursor: default; */
}

/* .fc-facility-card:hover {
  background: linear-gradient(
    83deg,
    #31b0ff 23.9%,
    #e082ff 49.53%,
    #ff9271 78.25%
  );

  transform: translateY(-2px);
} */

/* ======================================================
   ICON
====================================================== */

.fc-facility-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.fc-facility-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ======================================================
   TEXT
====================================================== */

.fc-facility-text h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.fc-facility-text p {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.9;
}

/* ======================================================
   SECTION LAYOUT
====================================================== */

.fc-info-section {
  padding: 4rem 0 0 0;
  background: #f9fafc;
}

.fc-info-container {
  max-width: 1280px;
  min-height: 740px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

/* Desktop */
@media (min-width: 992px) {
  .fc-info-container {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

/* ======================================================
   VIDEO (Responsive & Professional)
====================================================== */

.fc-info-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.fc-info-video {
  width: 100%;
  height: auto;
  aspect-ratio: 752 / 731;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* ======================================================
   CONTENT
====================================================== */

.fc-info-content {
  min-height: 680px;
}

.fc-info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #303135;
}

/* ======================================================
   ACCORDION
====================================================== */

.fc-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ITEM */

.fc-accordion-item:nth-child(odd) {
  background: #e2e9f5; /* soft blue */
}

.fc-accordion-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.fc-accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.fc-accordion-item.is-active {
  border-left-color: #1d88fa;
}

/* HEADER */

.fc-accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.25s ease;
}

.fc-accordion-header:hover {
  background: rgba(29, 136, 250, 0.04);
}

/* ICON */

.fc-accordion-icon {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.fc-accordion-item.is-active .fc-accordion-icon {
  transform: rotate(45deg);
}

.fc-accordion-title {
  font-family: poppins;
}

/* BODY (Smooth Height Animation Ready) */

/* .fc-accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 350ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
} */

/* INNER CONTENT */

.fc-accordion-body-inner {
  padding: 0 1.25rem 1.25rem;
}

.fc-accordion-body-inner p,
.fc-accordion-body-inner ul {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.fc-accordion-body-inner ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fc-accordion-body-inner.grid-tiga {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.fc-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-accordion-item.is-active .fc-accordion-body {
  max-height: 500px;
}

/* ======================================================
   ACCESSIBILITY & MOTION CONTROL
====================================================== */

@media (prefers-reduced-motion: reduce) {
  .fc-accordion-body {
    transition: none;
  }

  .fc-accordion-icon {
    transition: none;
  }
}

.section.faq-fcp {
  padding-bottom: 0px;
}

.section.cta-fcp {
  padding-top: 0px;
}
/* ======================================================
   FCP CTA CARD – ENTERPRISE READY
====================================================== */

.fcp-cta-card {
  position: relative;
  /* overflow: hidden; */

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 22rem;
  padding: 4rem 2rem;

  border-radius: 1.5rem;

  background-image: url("/img/background-cta-fcp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  isolation: isolate;
}

/* OVERLAY (SO TEXT CLEAR) */
.fcp-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* ======================================================
   LEFT IMAGE (ABSOLUTE)
====================================================== */

.fcp-cta-card__image-wrapper {
  position: absolute;
  left: -3rem;
  bottom: -3rem;

  z-index: 2;
  pointer-events: none;
}

.fcp-cta-card__image {
  max-height: 20rem;
  height: auto;
  width: auto;

  object-fit: contain;
  display: block;
}

/* ======================================================
   CONTENT
====================================================== */

.fcp-cta-card__content {
  position: relative;
  z-index: 3;

  text-align: center;
  max-width: 40rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;

  color: #ffffff;
}

.fcp-cta-card__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 64rem) {
  .fcp-cta-card {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .fcp-cta-card__image-wrapper {
    left: -4rem;
    bottom: -1rem;
    opacity: 0.8;
  }

  .fcp-cta-card__image {
    max-height: 16rem;
  }
}

@media (max-width: 48rem) {
  .fcp-cta-card {
    padding: 3rem 1.25rem;
  }

  .fcp-cta-card__image-wrapper {
    display: none; /* hide on small mobile */
  }
}
