@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #111111;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn--pill {
  border-radius: 100px;
}
.btn--dark {
  background: #111111;
  color: #FFFFFF;
}
.btn--dark:hover {
  background: rgb(55.25, 55.25, 55.25);
}
.btn--white {
  background: #FFFFFF;
  color: #111111;
}
.btn--white:hover {
  background: rgb(242.25, 242.25, 242.25);
}
.btn--primary {
  background: #E02020;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: rgb(188.9354330709, 26.2645669291, 26.2645669291);
}
.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn--outline:hover {
  background: #FFFFFF;
  color: #111111;
}

.section {
  padding: 80px 0;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section__header {
    flex-direction: column;
  }
}
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E02020;
  margin-bottom: 8px;
}
.section__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
}
.section__desc {
  max-width: 320px;
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.7;
  align-self: flex-end;
}
.section__cta {
  text-align: center;
  margin-top: 48px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar__brand {
  flex-shrink: 0;
}
.navbar img {
  height: 40px;
  width: auto;
}
.navbar__menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  margin-left: auto;
}
.navbar__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
  transition: color 0.2s;
}
.navbar__menu a:hover, .navbar__menu a.active {
  color: #111111;
}
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    margin-left: 0;
    padding: 18px;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
  }
  .navbar__menu li {
    width: 100%;
  }
  .navbar__menu a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    color: #111111;
  }
  .navbar__menu a:hover,
  .navbar__menu a.active {
    background: #F8F8F8;
  }
  .navbar__menu.open {
    display: flex;
  }
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .navbar .btn {
    display: none;
  }
}

.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: #FFFFFF;
}
.hero__inner {
  max-width: 720px;
  margin: 0 auto 48px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 24px;
}
.hero__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E02020;
  flex-shrink: 0;
}
.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #111111;
}
.hero__title--accent {
  color: #E02020;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero__video-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16/9;
  background: #111111;
}
.hero__video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.section--keunggulan {
  background: #F8F8F8;
}

.keunggulan__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023px) {
  .keunggulan__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.keunggulan__text .section__eyebrow {
  margin-bottom: 12px;
}
.keunggulan__text .section__title {
  margin-bottom: 20px;
}

.keunggulan__desc {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.keunggulan__badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keunggulan__tag {
  padding: 8px 18px;
  border-radius: 100px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111111;
}

.keunggulan__media {
  position: relative;
}

.keunggulan__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.keunggulan__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #111111;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E02020;
  flex-shrink: 0;
}
.hero__badge--tl {
  top: 20px;
  left: 20px;
}
.hero__badge--tr {
  top: 20px;
  right: 20px;
}
.hero__badge--bl {
  bottom: 20px;
  left: 20px;
}
.hero__badge--br {
  bottom: 20px;
  right: 20px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

.properti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .properti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .properti-grid {
    grid-template-columns: 1fr;
  }
}

.properti-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.properti-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.properti-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.properti-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.properti-card__img-wrap:hover img {
  transform: scale(1.05);
}
.properti-card__badge {
  color: #FFFFFF;
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}
.properti-card__badge.available {
  background: #D1FAE5;
  color: #ffffff;
}
.properti-card__badge.sold {
  background: #FEE2E2;
  color: #991B1B;
}
.properti-card__badge.booking {
  background: #FEF3C7;
  color: #92400E;
}
.properti-card__body {
  padding: 20px;
}
.properti-card__location {
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 6px;
}
.properti-card__name {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
.properti-card__specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.properti-card__specs span {
  font-size: 0.82rem;
  color: #6B7280;
}
.properti-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
}

.section--fasilitas {
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.92) 0%, rgb(255, 255, 255) 100%);
}

.fasilitas-board {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.fasilitas-board--tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
}
@media (max-width: 1023px) {
  .fasilitas-board--tabs {
    grid-template-columns: 1fr;
  }
}

.fasilitas-tabs {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-right: 1px solid #E5E7EB;
}
@media (max-width: 1023px) {
  .fasilitas-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }
}

.fasilitas-tab {
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 28px 26px;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  color: #6B7280;
  cursor: pointer;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  transition: all 0.3s ease-out;
}
.fasilitas-tab:hover, .fasilitas-tab.active {
  background: rgba(17, 17, 17, 0.06);
  color: #E02020;
}
@media (max-width: 1023px) {
  .fasilitas-tab {
    width: auto;
    flex: 1 1 50%;
    padding: 18px 20px;
  }
}
@media (max-width: 575px) {
  .fasilitas-tab {
    flex-basis: 100%;
  }
}

.fasilitas-panels {
  min-width: 0;
  position: relative;
  min-height: 640px;
}
@media (max-width: 767px) {
  .fasilitas-panels {
    min-height: 0;
  }
}

.fasilitas-panel {
  display: none;
  height: 100%;
}
.fasilitas-panel.active {
  display: block;
}
.fasilitas-panel__list {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.fasilitas-feature {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 32px;
  min-height: 168px;
  padding: 28px 32px;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .fasilitas-feature {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
  }
}
.fasilitas-feature__content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.fasilitas-feature__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E02020;
  box-shadow: 0 0 0 8px rgba(224, 32, 32, 0.08);
  flex-shrink: 0;
}
.fasilitas-feature__name {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
  color: #111111;
}
.fasilitas-feature__media {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  border-radius: 14px;
  overflow: hidden;
  background: #F8F8F8;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .fasilitas-feature__media {
    justify-self: start;
    max-width: 100%;
  }
}
.fasilitas-feature__media img,
.fasilitas-feature__media svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.fasilitas-feature__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(17, 17, 17, 0.3);
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.04) 0%, rgba(224, 32, 32, 0.06) 100%);
}

.page-header {
  padding: 140px 24px 60px;
  background: #F8F8F8;
  border-bottom: 1px solid #E5E7EB;
  text-align: center;
}
.page-header__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: #111111;
}
.page-header__desc {
  color: #6B7280;
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
  margin: 0 auto;
}

.section--properti-page {
  padding-top: 48px;
}

.properti-page__count {
  font-size: 0.88rem;
  color: #6B7280;
  margin-bottom: 32px;
}
.properti-page__count strong {
  color: #111111;
}

.properti-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.properti-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #E02020;
  white-space: nowrap;
  transition: letter-spacing 0.2s;
}
.properti-card__cta:hover {
  letter-spacing: 0.02em;
}

.properti-empty {
  text-align: center;
  padding: 80px 24px;
}
.properti-empty__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.properti-empty h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.properti-empty p {
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cluster-section {
  margin-bottom: 64px;
}
.cluster-section:last-child {
  margin-bottom: 0;
}

.cluster-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E5E7EB;
  position: relative;
}
.cluster-section__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: #E02020;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .cluster-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cluster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cluster-grid {
    grid-template-columns: 1fr;
  }
}

.cluster-card {
  display: block;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.cluster-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}
.cluster-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #F8F8F8;
  border-radius: 16px;
  margin: 12px 12px 0;
}
.cluster-card__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 16px;
}
.cluster-card:hover .cluster-card__img-wrap img {
  transform: scale(1.06);
}
.cluster-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #F8F8F8;
  color: #E5E7EB;
  border-radius: 16px;
}
.cluster-card__unit-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(17, 17, 17, 0.7);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.cluster-card__body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cluster-card__kategori {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B7280;
}
.cluster-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
}
.cluster-card__price {
  font-size: 0.85rem;
  font-weight: 500;
  color: #E02020;
  margin-bottom: 4px;
}
.cluster-card__cta {
  font-size: 0.82rem;
  padding: 8px 20px;
  margin-top: 4px;
}

.cluster-header {
  padding: 120px 0 48px;
  background: #F8F8F8;
  border-bottom: 1px solid #E5E7EB;
}
.cluster-header__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  margin-top: 28px;
}
@media (max-width: 1023px) {
  .cluster-header__inner {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .cluster-header__inner {
    grid-template-columns: 1fr;
  }
}
.cluster-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  margin: 10px 0 14px;
}
.cluster-header__address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 12px;
}
.cluster-header__address svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.cluster-header__count {
  font-size: 0.88rem;
  color: #6B7280;
}
.cluster-header__count strong {
  color: #111111;
  font-weight: 700;
}
.cluster-header__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 450px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.cluster-header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .cluster-header__img {
    display: none;
  }
}

.cluster-lokasi {
  padding: 80px 0;
  background: #F8F8F8;
}
.cluster-lokasi__header {
  margin-bottom: 40px;
}
.cluster-lokasi__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
}
.cluster-lokasi__grid {
  display: grid;
  gap: 24px;
}
.cluster-lokasi__grid--both {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .cluster-lokasi__grid--both {
    grid-template-columns: 1fr;
  }
}
.cluster-lokasi__grid--single {
  grid-template-columns: 1fr;
  max-width: 800px;
}
.cluster-lokasi__panel {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
}
.cluster-lokasi__panel-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #E5E7EB;
}
.cluster-lokasi__panel-label i {
  font-size: 1rem;
  color: #E02020;
}
.cluster-lokasi__map {
  position: relative;
}
.cluster-lokasi__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}
@media (max-width: 767px) {
  .cluster-lokasi__map iframe {
    height: 300px;
  }
}
.cluster-lokasi__gmaps-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cluster-lokasi__gmaps-btn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.cluster-lokasi__gmaps-btn i {
  color: #E02020;
  font-size: 1rem;
}
.cluster-lokasi__denah {
  position: relative;
  overflow: hidden;
}
.cluster-lokasi__denah img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.cluster-lokasi__denah img:hover {
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .cluster-lokasi__denah img {
    height: 280px;
  }
}
.cluster-lokasi__zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  color: #111111;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cluster-lokasi__zoom-btn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.cluster-info-section {
  border-top: 1px solid #E5E7EB;
  padding-top: 64px;
}

.cluster-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: flex-start;
}
.cluster-info-grid:has(.cluster-info-block:only-child) {
  grid-template-columns: 1fr;
  max-width: 800px;
}
@media (max-width: 767px) {
  .cluster-info-grid {
    grid-template-columns: 1fr;
  }
}

.cluster-info-block__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cluster-info-block__title i {
  color: #E02020;
  font-size: 1.2rem;
}

.cluster-denah {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  background: #F8F8F8;
  cursor: pointer;
}
.cluster-denah img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.cluster-denah:hover img {
  transform: scale(1.02);
}
.cluster-denah__zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(17, 17, 17, 0.7);
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.cluster-denah__zoom:hover {
  background: #111111;
}

.cluster-maps {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  height: 400px;
}
.cluster-maps iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: none;
}
@media (max-width: 767px) {
  .cluster-maps {
    height: 300px;
  }
}

.cluster-fasilitas {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 100%);
  border-top: 1px solid #E5E7EB;
}
.cluster-fasilitas__header {
  max-width: 760px;
  margin-bottom: 36px;
}
.cluster-fasilitas__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 12px;
}
.cluster-fasilitas__desc {
  color: #6B7280;
  line-height: 1.75;
  max-width: 640px;
}
.cluster-fasilitas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1023px) {
  .cluster-fasilitas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cluster-fasilitas__grid {
    grid-template-columns: 1fr;
  }
}
.cluster-fasilitas__card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cluster-fasilitas__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(224, 32, 32, 0.25);
}
.cluster-fasilitas__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.cluster-fasilitas__kategori {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(224, 32, 32, 0.08);
  color: #E02020;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cluster-fasilitas__kategori::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E02020;
  flex-shrink: 0;
}
.cluster-fasilitas__jarak {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}
.cluster-fasilitas__nama {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
  color: #111111;
}

.detail-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #6B7280;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #6B7280;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #111111;
}
.breadcrumb span:last-child {
  color: #111111;
  font-weight: 500;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .detail-header {
    flex-direction: column;
    gap: 16px;
  }
}
.detail-header__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.detail-header__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}
.detail-header__price {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}

.detail-specs-bar {
  display: flex;
  gap: 48px;
  padding: 20px 28px;
  background: #F8F8F8;
  border-radius: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .detail-specs-bar {
    gap: 24px;
    padding: 16px 20px;
  }
}
.detail-specs-bar__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-specs-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
}
.detail-specs-bar__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.detail-specs-bar__items span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #111111;
}
.detail-specs-bar__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #111111;
}

.detail-hero-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 56px;
  background: #F8F8F8;
  max-width: 100%;
}
.detail-hero-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .detail-hero-img {
    aspect-ratio: 4/3;
  }
}

.detail-video {
  margin-bottom: 56px;
}
.detail-video__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.detail-video__title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}
.detail-video__frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16/9;
  background: #111111;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.detail-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .detail-content {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .detail-content {
    grid-template-columns: 1fr;
  }
}

.detail-section {
  margin-bottom: 48px;
}
.detail-section:last-child {
  margin-bottom: 0;
}
.detail-section__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.detail-desc {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.8;
}

.detail-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .detail-table {
    grid-template-columns: 1fr;
  }
}
.detail-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #E5E7EB;
  gap: 12px;
}
.detail-table__row:nth-last-child(-n+2) {
  border-bottom: none;
}
@media (max-width: 575px) {
  .detail-table__row:last-child {
    border-bottom: none;
  }
  .detail-table__row:nth-last-child(2) {
    border-bottom: 1px solid #E5E7EB;
  }
}
.detail-table__key {
  font-size: 0.88rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-table__val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111111;
}

.detail-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
}
.detail-address svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-gallery__main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.detail-gallery__main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.detail-gallery__main img:hover {
  transform: scale(1.03);
}
.detail-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 575px) {
  .detail-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.detail-gallery__thumb {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.detail-gallery__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.detail-gallery__thumb img:hover {
  transform: scale(1.05);
}

.detail-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-cta-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-cta-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
}
.detail-cta-card__desc {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 4px;
}
.detail-cta-card__btn {
  width: 100%;
  justify-content: center;
}

.detail-sidebar__more {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
}

.detail-sidebar__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.detail-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: flex-start;
  transition: opacity 0.2s;
}
.sidebar-card:hover {
  opacity: 0.8;
}
.sidebar-card__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.sidebar-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sidebar-card__cluster {
  font-size: 0.72rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.sidebar-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sidebar-card__specs {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.sidebar-card__specs span {
  font-size: 0.72rem;
  color: #6B7280;
}
.sidebar-card__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111111;
}

.detail-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #E5E7EB;
}
.detail-related__inner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.detail-related .properti-grid {
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
}
@media (max-width: 1023px) {
  .detail-related .properti-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .detail-related .properti-grid {
    grid-template-columns: 1fr;
  }
}
.detail-related__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111111;
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 1.1rem;
}
.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.detail-gallery-section {
  margin-top: 64px;
  padding-bottom: 80px;
}
.detail-gallery-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 700px;
}
.detail-gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  background: #F8F8F8;
  cursor: pointer;
}
.detail-gallery-grid__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.detail-gallery-grid__item img:hover {
  transform: scale(1.04);
}
.detail-gallery-grid__item--wide {
  grid-column: 1/-1;
  aspect-ratio: 16/8;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .detail-gallery-grid__item--wide {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 575px) {
  .detail-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 6px;
  }
  .detail-gallery-grid__item--wide {
    aspect-ratio: 4/3;
  }
}

.section--proses {
  padding: 0;
  margin: 0 24px 80px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 580px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 100%), url("../img/background-proses.png") center/cover no-repeat;
}
@media (max-width: 767px) {
  .section--proses {
    margin: 0 16px 60px;
  }
}

.proses__overlay {
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 80px 70px;
}
@media (max-width: 1023px) {
  .proses__overlay {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  .proses__overlay {
    padding: 60px 28px;
  }
}

.proses__card {
  max-width: 480px;
  color: #FFFFFF;
}
.proses__card .section__eyebrow {
  color: #E02020;
}
.proses__card h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 12px 0 18px;
}
.proses__card > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.proses__card .btn--dark:hover {
  background: #FFFFFF;
  color: #111111;
}

.proses__list {
  list-style: none;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.proses__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.proses__number {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #E02020;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.proses__step-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.proses__step-content p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.section--stats {
  padding: 60px 0;
  background: #111111;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  padding: 40px 48px;
  color: #FFFFFF;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}
.stat-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E02020;
  margin-bottom: 12px;
}
.stat-item .stat-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 260px;
}

.section--artikel {
  background: #FFFFFF;
}

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1023px) {
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .artikel-grid {
    grid-template-columns: 1fr;
  }
}

.artikel-card {
  display: block;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.artikel-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.artikel-card__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F8F8F8;
}
.artikel-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.artikel-card:hover .artikel-card__thumb img {
  transform: scale(1.05);
}
.artikel-card__body {
  padding: 24px;
}
.artikel-card__date {
  font-size: 0.72rem;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.artikel-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 12px;
  color: #111111;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.artikel-card__excerpt {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.artikel-card__read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111111;
}

.artikel-detail-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.artikel-detail__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 32px;
  max-width: 800px;
}

.artikel-detail__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/6;
  max-height: 480px;
  margin-bottom: 56px;
  background: #F8F8F8;
}
.artikel-detail__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .artikel-detail__hero {
    aspect-ratio: 4/3;
    max-height: none;
  }
}

.artikel-detail__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .artikel-detail__body {
    grid-template-columns: 160px 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .artikel-detail__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.artikel-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 90px;
}
@media (max-width: 767px) {
  .artikel-detail__meta {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.artikel-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.artikel-meta-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
}
.artikel-meta-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;
}

.artikel-share {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.artikel-share__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: all 0.2s;
}
.artikel-share__btn:hover {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
}
.artikel-share__btn--wa:hover {
  background: #25D366;
  border-color: #25D366;
}

.artikel-detail__content {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #374151;
}
.artikel-detail__content h1, .artikel-detail__content h2, .artikel-detail__content h3, .artikel-detail__content h4 {
  font-weight: 700;
  color: #111111;
  margin: 2em 0 0.75em;
  line-height: 1.3;
}
.artikel-detail__content h2 {
  font-size: 1.4rem;
}
.artikel-detail__content h3 {
  font-size: 1.2rem;
}
.artikel-detail__content p {
  margin-bottom: 1.25em;
}
.artikel-detail__content strong, .artikel-detail__content b {
  font-weight: 600;
  color: #111111;
}
.artikel-detail__content a {
  color: #E02020;
  text-decoration: underline;
}
.artikel-detail__content a:hover {
  opacity: 0.8;
}
.artikel-detail__content ul, .artikel-detail__content ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}
.artikel-detail__content ul li, .artikel-detail__content ol li {
  margin-bottom: 0.5em;
}
.artikel-detail__content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5em 0;
}
.artikel-detail__content blockquote {
  border-left: 3px solid #E02020;
  padding: 12px 20px;
  margin: 1.5em 0;
  background: #F8F8F8;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #6B7280;
}

.artikel-related {
  padding-top: 48px;
  border-top: 1px solid #E5E7EB;
}
.artikel-related__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 32px;
}

.tentang-page {
  padding-top: 80px;
}

.tentang-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 80px;
}
.tentang-hero .container {
  display: flex;
  align-items: center;
  width: 100%;
}
.tentang-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 0;
  margin: 0;
}
.tentang-hero__inner .section__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.tentang-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.tentang-hero__title--accent {
  color: #E02020;
}
.tentang-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 520px;
}
.tentang-hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tentang-hero__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tentang-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.55) 55%, rgba(17, 17, 17, 0.2) 100%);
}
@media (max-width: 767px) {
  .tentang-hero {
    min-height: auto;
  }
  .tentang-hero__inner {
    padding: 60px 0;
  }
}

.tentang-sejarah__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .tentang-sejarah__grid {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .tentang-sejarah__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.tentang-sejarah__text p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.tentang-sejarah__text .section__title {
  margin-bottom: 28px;
}
.tentang-sejarah__timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 32px;
}
.tentang-sejarah__timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #E5E7EB;
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item__dot {
  position: absolute;
  left: -29px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  transition: border-color 0.2s, background 0.2s;
}
.timeline-item:hover .timeline-item__dot {
  background: #E02020;
  border-color: #E02020;
}
.timeline-item__year {
  font-size: 0.8rem;
  font-weight: 700;
  color: #E02020;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.timeline-item__text {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.7;
}

.tentang-stats {
  background: #111111;
  padding: 72px 0;
  margin: 80px 0;
}
.tentang-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}
@media (max-width: 1023px) {
  .tentang-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .tentang-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.tentang-stat {
  text-align: center;
}
.tentang-stat h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.tentang-stat .stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E02020;
  margin-bottom: 10px;
}
.tentang-stat .stat-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.tentang-visi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .tentang-visi__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .tentang-visi__grid {
    grid-template-columns: 1fr;
  }
}

.tentang-visi-card {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 32px;
  background: #FFFFFF;
  transition: box-shadow 0.3s;
}
.tentang-visi-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.tentang-visi-card--dark {
  background: #111111;
  border-color: #111111;
}
.tentang-visi-card--dark h3, .tentang-visi-card--dark p {
  color: #FFFFFF;
}
.tentang-visi-card--dark .tentang-visi-card__icon {
  color: #E02020;
}
.tentang-visi-card__icon {
  font-size: 2rem;
  color: #E02020;
  margin-bottom: 20px;
  display: block;
}
.tentang-visi-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}
.tentang-visi-card p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.75;
}
.tentang-visi-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tentang-visi-card ul li {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.tentang-visi-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #E02020;
  font-weight: 700;
}

.tentang-lokasi {
  background: #F8F8F8;
  padding: 80px 0;
}
.tentang-lokasi__header {
  max-width: 560px;
  margin-bottom: 56px;
}
.tentang-lokasi__header .section__title {
  margin-bottom: 16px;
}
.tentang-lokasi__desc {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.75;
}

.tentang-akses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .tentang-akses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .tentang-akses-grid {
    grid-template-columns: 1fr;
  }
}

.tentang-akses-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.3s, transform 0.3s;
}
.tentang-akses-item:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.tentang-akses-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 32, 32, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #E02020;
}
.tentang-akses-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
}
.tentang-akses-item p {
  font-size: 0.87rem;
  color: #6B7280;
  line-height: 1.7;
}

.tentang-cta {
  padding: 100px 0;
}
.tentang-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.tentang-cta__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.tentang-cta__inner p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 36px;
}
.tentang-cta__inner .section__eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.tentang-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.8);
}
.footer__cta {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/img/hero-property.webp") center/cover;
  border-radius: 24px;
  margin: 0 24px 0;
  text-align: center;
  padding: 100px 24px;
}
.footer__cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}
.footer__cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: flex;
  gap: 80px;
}
@media (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__brand {
  flex: 1;
}
.footer__brand img {
  width: 150px;
  height: auto;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer__links {
  display: flex;
  gap: 60px;
}
@media (max-width: 576px) {
  .footer__links {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__col h4 {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer__col ul {
  list-style: none;
}
.footer__col ul li, .footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col ul li:hover, .footer__col ul a:hover {
  color: #FFFFFF;
}
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
@media (max-width: 576px) {
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  color: rgba(255, 255, 255, 0.6);
}
.footer__social a:hover {
  color: #FFFFFF;
}

/*# sourceMappingURL=main.css.map */
