:root {
  --blue: #0b62ff;
  --cyan: #00c2ff;
  --yellow: #ffd338;
  --dark: #101828;
  --muted: #667085;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(16, 24, 40, .16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(11,98,255,.16), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(255,211,56,.32), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0,194,255,.14), transparent 34%);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 60px;
  align-items: center;
}

.home-hero-copy h1 {
  font-size: clamp(50px, 8vw, 96px);
  line-height: .92;
  letter-spacing: -.08em;
  margin-bottom: 24px;
}

.home-mini-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.home-mini-stats div {
  min-width: 130px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.85);
  border: 1px solid #eaecf0;
  box-shadow: 0 16px 40px rgba(16,24,40,.08);
}

.home-mini-stats strong {
  display: block;
  font-size: 28px;
}

.home-mini-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.home-visual {
  position: relative;
  min-height: 620px;
}

.home-orbit-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 8px solid white;
  box-shadow: var(--shadow);
}

.home-orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-one {
  right: 5%;
  top: 20px;
  width: 68%;
  height: 380px;
}

.card-two {
  left: 0;
  bottom: 90px;
  width: 46%;
  height: 260px;
}

.card-three {
  right: 0;
  bottom: 20px;
  width: 42%;
  height: 250px;
}

.home-center-badge {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
  color: white;
  background: linear-gradient(135deg, #101828, #1d2939);
  box-shadow: 0 28px 70px rgba(16,24,40,.28);
}

.home-center-badge strong {
  font-size: 25px;
  line-height: 1.1;
}

.home-center-badge span {
  margin-top: 8px;
  color: #d0d5dd;
  font-size: 13px;
}

.section-space {
  padding: 100px 0;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border-radius: 36px;
  overflow: hidden;
  background: white;
  border: 1px solid #eaecf0;
  box-shadow: 0 22px 60px rgba(16,24,40,.10);
  transition: .35s ease;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  right: -80px;
  bottom: -90px;
  opacity: .25;
}

.category-card.rumah::after {
  background: linear-gradient(135deg, #7c3aed, #f59e0b);
}

.category-card.ruko::after {
  background: linear-gradient(135deg, #0b62ff, #00c2ff);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 28px;
}

.category-card h3 {
  font-size: 40px;
  margin-bottom: 12px;
}

.category-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.category-card span {
  font-weight: 800;
  color: var(--blue);
}

.home-listing-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f6f9ff 0%, #fff 100%);
}

.listing-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.listing-tab {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: white;
  cursor: pointer;
  font-weight: 700;
  transition: .25s ease;
}

.listing-tab.active,
.listing-tab:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.property-badge.invest {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.property-badge.mix {
  background: linear-gradient(135deg, #f59e0b, #0b62ff);
}

@media (max-width: 960px) {

  .home-hero-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .home-visual {
    min-height: 520px;
  }

}

@media (max-width: 620px) {

  .home-hero {
    padding-top: 110px;
  }

  .home-visual {
    min-height: 430px;
  }

  .card-one {
    width: 86%;
    height: 300px;
    right: 0;
  }

  .card-two {
    width: 55%;
    height: 190px;
    bottom: 50px;
  }

  .card-three {
    width: 50%;
    height: 170px;
  }

  .home-center-badge {
    width: 170px;
    height: 170px;
  }

  .home-center-badge strong {
    font-size: 19px;
  }

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--dark);
  background: radial-gradient(circle at top left, #e8f3ff 0, transparent 32%), #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(16,24,40,.10);
}

.brand {
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #344054;
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 32px rgba(11,98,255,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(11,98,255,.35);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: 90px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,211,56,.75), rgba(0,194,255,.45));
  filter: blur(10px);
  opacity: .55;
  animation: float 6s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11,98,255,.10);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #12b76a;
  box-shadow: 0 0 0 0 rgba(18,183,106,.65);
  animation: pulse 1.7s infinite;
}

h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -.08em;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), #00b8d9 55%, #ffb800);
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-secondary {
  display: inline-flex;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  font-weight: 800;
  background: white;
  transition: .25s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  color: var(--blue);
}

.price-card {
  margin-top: 34px;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 12px 22px;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border: 1px solid #eaecf0;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(16,24,40,.10);
}

.price-card small {
  color: var(--muted);
  font-weight: 700;
}

.price-card strong {
  font-size: 28px;
  letter-spacing: -.04em;
}

.tag {
  padding: 8px 12px;
  background: #fff7cf;
  border-radius: 999px;
  font-weight: 900;
  color: #7a4d00;
}

.photo-stack {
  position: relative;
  min-height: 620px;
  perspective: 1000px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 8px solid white;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  animation: reveal .9s ease both, float 5.8s ease-in-out infinite;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.main {
  inset: 30px 35px auto auto;
  width: 74%;
  height: 430px;
  animation-delay: .15s;
}

.photo-card.side {
  left: 0;
  bottom: 58px;
  width: 46%;
  height: 270px;
  animation-delay: .28s;
}

.photo-card.mini {
  right: 5px;
  bottom: 10px;
  width: 40%;
  height: 220px;
  animation-delay: .45s;
}

.floating-badge {
  position: absolute;
  left: 26px;
  top: 38px;
  z-index: 5;
  padding: 16px 18px;
  background: #101828;
  color: white;
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  font-size: 26px;
}

.floating-badge small {
  color: #d0d5dd;
}

section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card,
.feature,
.contact-card {
  background: rgba(255,255,255,.8);
  border: 1px solid #eaecf0;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16,24,40,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.stat-card:hover,
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(16,24,40,.14);
}

.stat-card {
  padding: 24px;
  min-height: 150px;
}

.stat-card .icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.stat-card strong {
  font-size: 30px;
  letter-spacing: -.04em;
  display: block;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.showcase {
  background: linear-gradient(180deg, #f6f9ff 0%, #fff 100%);
  overflow: hidden;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: stretch;
}

.gallery-big,
.gallery-small {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-big {
  min-height: 520px;
}

.gallery-small-wrap {
  display: grid;
  gap: 20px;
}

.gallery-small {
  min-height: 250px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.gallery-big:hover img,
.gallery-small:hover img {
  transform: scale(1.07);
}

.caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 28px;
  min-height: 230px;
}

.feature .num {
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 22px;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.feature p {
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: white;
  border: 1px solid #eaecf0;
  box-shadow: 0 12px 36px rgba(16,24,40,.06);
}

.timeline-item .dot {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yellow), #fff2a6);
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-section {
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: radial-gradient(circle at top right, rgba(255,211,56,.35), transparent 36%),
              linear-gradient(135deg, #101828, #182640);
  color: white;
  overflow: hidden;
  position: relative;
}

.contact-card h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

.contact-card p {
  color: #d0d5dd;
  line-height: 1.75;
  max-width: 720px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.whatsapp {
  padding: 16px 22px;
  border-radius: 999px;
  background: #12b76a;
  color: white;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(18,183,106,.25);
  transition: transform .25s ease;
}

.whatsapp:hover {
  transform: translateY(-4px);
}

.profile {
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  text-align: center;
  font-weight: 900;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.property-card {
  background: rgba(255,255,255,.9);
  border: 1px solid #eaecf0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(16,24,40,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(16,24,40,.16);
}

.property-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(16,24,40,.18);
}

.property-badge.sale {
  background: linear-gradient(135deg, #0b62ff, #00c2ff);
}

.property-badge.rent {
  background: linear-gradient(135deg, #12b76a, #36d399);
}

.property-content {
  padding: 26px;
}

.property-location {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.property-content h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.property-content p {
  color: var(--muted);
  line-height: 1.7;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.property-specs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.property-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #eaecf0;
}

.property-bottom strong {
  font-size: 22px;
  letter-spacing: -.04em;
}

.property-bottom a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-size: 14px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease;
}

.property-bottom a:hover {
  transform: translateY(-3px);
  background: var(--blue);
}

@media (max-width: 920px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .property-image {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .property-content h3 {
    font-size: 24px;
  }

  .property-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-bottom a {
    width: 100%;
    text-align: center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(18,183,106,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(18,183,106,0);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(8deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@media (max-width: 920px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-grid,
  .gallery,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 520px;
  }

  .stats,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-big {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    top: 10px;
    padding-left: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
  }

  .price-card {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .photo-stack {
    min-height: 430px;
  }

  .photo-card.main {
    width: 86%;
    height: 300px;
    right: 0;
  }

  .photo-card.side {
    width: 56%;
    height: 190px;
    bottom: 35px;
  }

  .photo-card.mini {
    width: 48%;
    height: 160px;
  }

  .floating-badge {
    left: 0;
    top: 4px;
  }

  .stats,
  .features {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}