:root {
  color-scheme: light;
  --bg: #f1f5fb;
  --surface: #ffffff;
  --surface-strong: #eef4fb;
  --text: #102b43;
  --text-muted: #5a6e8a;
  --primary: #0693e3;
  --primary-dark: #037abd;
  --accent: #7ec8f5;
  --border: #d0e9fb;
  --shadow: 0 22px 60px rgba(6, 147, 227, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(6, 147, 227, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
  font-size: 1.16rem;
}

.brand-tag {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 28px rgba(6, 147, 227, 0.18);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(6, 147, 227, 0.16);
}

.hero {
  position: relative;
  min-height: 660px;
  padding: 4rem 0 5rem;
  background: url("Reference/Banner%20utama%20paradice.jpg") center/cover no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f2f5ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.05;
  color: white;
}

.hero p {
  margin: 0;
  max-width: 46rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid rgba(6, 147, 227, 0.08);
}

.section-light {
  background: #f8fbff;
}

.section-white {
  background: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading.section-contact {
  margin-top: 3rem;
}

.section-heading h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.details-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  min-height: 220px;
}

.feature-card,
.property-card,
.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.7rem;
  box-shadow: 0 12px 28px rgba(6, 147, 227, 0.08);
}

.feature-card h3,
.property-card h3,
.detail-card h3 {
  margin-top: 0;
}

.feature-card p,
.property-card p,
.detail-card p {
  color: var(--text-muted);
}

.property-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.property-tag {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(23, 120, 214, 0.10);
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.property-card ul,
.detail-card ul {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--text-muted);
  list-style: disc;
}

.property-card ul li,
.detail-card ul li {
  margin: 0.75rem 0;
}

.property-card a,
.detail-card a {
  margin-top: 1.75rem;
}

.price {
  margin: 0.6rem 0 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.payment-card {
  margin: 1.5rem 0 0;
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 147, 227, 0.16);
  background: rgba(6, 147, 227, 0.06);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 220px;
  background: rgba(6, 147, 227, 0.08);
}

.gallery-item::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item.image-fallback::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 220px;
}

.gallery-item.image-fallback img {
  display: none;
}

.site-footer {
  padding: 2rem 0;
  background: #0f2140;
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: white;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  z-index: 50;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.3);
}

@media (max-width: 960px) {
  .grid-3,
  .details-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 420px;
    padding: 3rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .grid,
  .details-grid,
  .gallery-grid {
    gap: 1.25rem;
  }

  .grid-3,
  .details-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .property-card,
  .detail-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .property-card a,
  .detail-card a {
    margin-top: 1rem;
  }

  .button {
    padding: 0.85rem 1.4rem;
    width: 100%;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 180px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}
