/* ============================================================
   1. HERO SECTION (Luxury Hero)
   ============================================================ */
.hero-luxury {
  min-height: 100vh;
  position: relative;
  background: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  margin-top: -85px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.text-gold { color: #d4af37 !important; }
.tracking-widest { letter-spacing: 4px; }

/* Responsive hero */
@media (max-width: 768px) {
  .hero-luxury {
    min-height: 80vh;
  }
}

/* ============================================================
   2. PROPERTY CARDS
   ============================================================ */
.property-card {
  transition: all 0.4s ease;
  background: white;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.property-card img {
  height: 250px;
  object-fit: cover;
  transition: 0.6s ease;
}

.property-card:hover img {
  transform: scale(1.1);
}

.badge-price {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4af37;
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}

/* ============================================================
   3. EXPERIENCE BADGE
   ============================================================ */
.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #d4af37;
  color: white;
  padding: 30px;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(212,175,55,0.3);
}

@media (max-width: 768px) {
  .experience-badge {
    display: none;
  }
}

/* ============================================================
   4. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(rgba(15, 20, 30, 0.9), rgba(15, 20, 30, 0.9)),
              url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1500&q=80') center/cover fixed;
}

/* ============================================================
   5. STATS SECTION
   ============================================================ */
.stats-section {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* ============================================================
   6. PROSES PEMBELIAN (STEP CARDS) — IMPROVED
   ============================================================ */

#how-it-works {
  position: relative;
}

.step-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: 0.2s ease;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 215, 128, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  border-color: rgba(234, 179, 8, 0.55);
}

.step-card:hover::before {
  opacity: 1;
}

/* Garis penghubung */
.step-line {
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(148,163,184,0.3), rgba(234,179,8,0.9), rgba(148,163,184,0.3));
  z-index: 0;
}

/* Badge nomor */
.step-badge {
  position: relative;
  margin: 0 auto 14px auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, #fef9c3, #eab308);
  box-shadow: 0 10px 24px rgba(234, 179, 8, 0.4);
  z-index: 2;
}

.step-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
}

/* Icon di bawah nomor */
.step-icon {
  font-size: 1.7rem;
  color: #b38b2a;
}

/* Desktop spacing */
@media (min-width: 768px) {
  .step-card {
    padding-top: 3.5rem !important;
  }
}

/* Mobile styling */
@media (max-width: 767.98px) {
  .step-line {
    display: none;
  }

  .step-card {
    text-align: left;
  }

  .step-badge {
    margin-left: 0;
  }
}

/* ============================================================
   7. REVEAL ANIMATION
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}