/* --- Global Resets & Typography --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f7f6;
  color: #1c2434;
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Cover Header --- */
.hero-cover {
  width: 100%;
  height: 220px;
  background: url('images/img1.png') center/cover no-repeat;
}

/* --- Sticky Profile Navbar --- */
.profile-navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar-container {
  width: min(94%, 1000px);
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.profile-avatar-box {
  width: 90px;
  height: 90px;
  margin-top: -55px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.profile-meta {
  text-align: center;
}

.profile-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.profile-name {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: #081d4f;
}

.verified-badge {
  color: #1da1f2;
  font-size: clamp(18px, 2.5vw, 24px);
}

/* Navbar Scrolled State */
.profile-navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.profile-navbar.scrolled .navbar-container {
  flex-direction: row;
  justify-content: center;
  padding: 10px 20px;
  gap: 15px;
}

.profile-navbar.scrolled .profile-avatar-box {
  width: 45px;
  height: 45px;
  margin-top: 0;
}

/* --- Container & Main Card --- */
.container {
  width: min(94%, 1000px);
  margin: 0 auto;
  padding: 30px 0 60px;
}

.luxury-card {
  background: #ffffff;
  border-radius: 30px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.badge {
  text-align: center;
  margin-bottom: 25px;
}

.badge-text {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  color: #000000;
}

.subtext {
  text-align: center;
  font-size: clamp(17px, 2.5vw, 24px);
  color: #444444;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* --- SOLUSI GAMBAR ASLI: Responsive Auto-Adapting Slideshow --- */
.slideshow-container {
  display: grid; /* Menggunakan Grid Layout */
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 724px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.slide {
  grid-area: 1 / 1; /* Menumpuk semua slide tepat di satu titik cell grid yang sama */
  width: 100%;
  opacity: 0;
  animation: slideAnimation 12s infinite;
  display: flex;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: auto; /* Membiarkan tinggi menyesuaikan proporsi asli gambar */
  display: block;
  object-fit: contain; /* Melindungi detail gambar agar tidak melar/terdistorsi */
}

/* Animasi pergantian gambar halus */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

@keyframes slideAnimation {
  0% { opacity: 0; }
  6% { opacity: 1; }
  33% { opacity: 1; }
  39% { opacity: 0; }
  100% { opacity: 0; }
}

/* --- Call to Actions Buttons (Premium Design) --- */
.cta-wrapper {
  text-align: center;
  margin: 45px 0;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 60px;
  font-size: clamp(19px, 3vw, 32px);
  font-weight: 900;
  width: min(100%, 460px);
  box-shadow: 0 8px 24px rgba(143, 212, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulseEffect 1.8s infinite;
}

.btn-primary {
  background: linear-gradient(180deg, #d1ff44, #92d400);
  color: #111111;
  border: 3px solid #b5d93b;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(143, 212, 0, 0.45);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  animation: shineEffect 2.8s infinite;
}

@keyframes pulseEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes shineEffect {
  0% { left: -120%; }
  100% { left: 140%; }
}

/* --- Steps Section --- */
.steps {
  background: #fafafa;
  border-radius: 30px;
  border: 1px solid #eee;
  padding: clamp(20px, 4vw, 36px);
}

.steps-header {
  text-align: center;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 900;
  margin-bottom: 30px;
}

.steps-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.steps-list {
  flex: 1;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8fd400;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}

.step-text {
  font-size: clamp(16px, 2vw, 21px);
  color: #444444;
  line-height: 1.6;
  padding-top: 4px;
}

.gift-image img {
  width: min(220px, 100%);
  display: block;
}

/* --- Footer --- */
.site-footer {
  text-align: center;
  padding-top: 28px;
  margin-top: 20px;
  color: #777777;
  font-size: 15px;
  border-top: 1px solid #eeeeee;
}

/* --- Responsive Breakpoints --- */
@media(max-width: 900px) {
  .steps-content { flex-direction: column; }
  .gift-image img { width: 170px; margin: 0 auto; }
}

@media(max-width: 600px) {
  .hero-cover { height: 160px; }
  .profile-navbar.scrolled .navbar-container { padding: 8px 15px; gap: 10px; }
  .profile-bar { padding: 14px; gap: 14px; border-radius: 20px; }
  .profile-avatar-box { width: 75px; height: 75px; margin-top: -45px; }
  .cta-btn { padding: 16px 20px; }
  .step-number { min-width: 42px; height: 42px; font-size: 18px; }
}