html {
  scroll-behavior: smooth !important;
}

/* --- VYXZZ COSMIC TAN PALETTE --- */
:root {
  --bg-dark-main: #2c2c2c;  /* Abu-abu tua biar nyambung sama hitam di gambar */
  --bg-light-main: #3d3d3d;
  --text-primary: #ffffff;  /* Headline tetep Putih */
  --text-secondary: #c0c0c0; /* Deskripsi Abu-abu terang biar napas */
  --accent-gold: #e6ccb2;   /* Warna Krem/Tan lembut dari Gambar */
  --accent-gold-hover: #ffffff; /* Hover jadi putih murni */
  --nav-bg: rgba(26, 26, 26, 0.9); /* Navbar Gelap Transparan (nempel di area hitam gambar) */
}

/* SISA DARK MODE SUDAH DIHAPUS - KODE MURNI COSMIC TAN */

#services {
  scroll-margin-top: 50px; /* BIAR SCROLLNYA AGAK KEBAWAH, GA KETUTUP NAVBAR */
}
#hero {
  scroll-margin-top: 111px;
}
#process {
  scroll-margin-top: 60px;
}
#why-us {
  scroll-margin-top: -20px;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0; /* MARGIN DAN PADDING 0 BIAR GA ADA JARAK BAWAAN BROWSER */
  color: var(--text-primary);
  background-color: var(--bg-dark-main); /* Abu-abu Tua */
}

.navbar {
  height: 60px;
  display: flex; /* MENGAKTIFKAN MODE BARIS BIAR SEJAJAR KESAMPING */
  flex-wrap: wrap; /* BIAR KALO KEKEPENUHAN /LAYAR KEKECILAN BISA NURUN KE BAWAH */
  justify-content: space-between;
  align-items: center;
  background-color: var(--nav-bg); /* Navbar Gelap */
  padding: 5px 30px; 
  box-sizing: border-box; /* BIAR PADDING GA NGELEBARIN UKURAN ELEMEN */
  color: var(--text-primary);
  position: sticky; /* BIAR MENU NAVIGASI TETEP KELIATAN PAS USER SCROLL KEBAWAH */
  top: 0; /* TEMPELNYA DI ATAS */
  z-index: 100; /* BIAR DI LAYER PALING ATAS GA KETUTUP LAYER/ELEMEN LAIN */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px); 
}

.logo a{
  align-items: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -4px; 
  color: var(--accent-gold); /* Logo Emas Lembut */
  margin: 0;

}

.hamburger {
  position: fixed;
  top: 35px;
  right: 30px;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 103;
}

.hamburger span {
  display: none;
  width: 100%;
  height: 3px;
  border: 1px solid #121111;
  background-color: var(--text-primary);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-135deg);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 280px;
  height: 100vh;
  z-index: 102;
  background-color: var(--bg-dark-main);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 50px 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
  right: -30px;
}

.linkSidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.linkNav {
  display: flex;
  gap: 20px;
}

.overlaySidebar {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.overlaySidebar.active {
  display: block;
}

.menu-item {
  color: var(--text-secondary); 
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
  margin: 15px 15px;
  font-weight: 500;
}

.menu-item:hover {
  color: var(--accent-gold); /* Hover Emas */
}

.hero {
  height: 95vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* KITA PAKE GAMBAR BACKGROUND BARU LO DI SINI */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(44, 44, 44, 0.6)), 
              url('pexels-nui-malama-169330637-29373698.jpg'); /* Pastikan file gambarnya lo rename/sesuain */
  image-rendering: optimizeQuality;
  background-size: cover;
  background-position: center;
  position: relative; /* BIAR overlay NEMPEL DI HERO */
  color: var(--text-primary);
}

.hero-content {
  z-index: 2; /* ANGKA PALING GEDE = LAPISAN PALING ATAS */
}

.hero-content h1 {
  font-size: 55px; 
  margin-bottom: 15px;
  transition: opacity 0.8s ease, transform 0.4s ease;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content h1 span {
  color:var(--accent-gold);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-secondary); /* Deskripsi lebih redup */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.btn-create {
  background: var(--accent-gold); /* Tombol Emas */
  color: #1a1a1a; /* Teks item biar kontras */
  padding: 16px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(230, 204, 178, 0.3);
  transition: all 0.3s ease;
}

.btn-create:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 204, 178, 0.5);
  background: #e9e9e9dd; /* Hover jadi putih */
  color: #000;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
  padding: 14px 35px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 500;
}

.btn-outline:hover {
  background: var(--text-primary);
  color: #1a1a1a;
  border-color: var(--text-primary);
}

.easySteps {
  height: 100%;
  padding: 90px 0;
  background-color: var(--bg-light-main); /* Steps lebih terang dikit dari background utama */
}

.easySteps h1{
  text-align: center;
  letter-spacing: 2px;
  margin-top: 0px;
  margin-bottom: 60px;
  color: var(--text-primary);
  font-weight: 700;
}

.easySteps h1 span {
  color: var(--accent-gold);
}

.containerSteps {
  display: flex;
  justify-content: center;
  gap:20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cardSteps {
  position: relative;
  width: 300px;
  background-color: var(--bg-dark-main); /* Card Abu Tua */
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden; /* Biar kalau angkanya kegedean tetep kepotong rapi */
}

.cardSteps:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 204, 178, 0.3);
}

.cardSteps h3 {
  color: var(--accent-gold); /* Judul Langkah Emas */
  font-size: 1.4rem;
}

.cardSteps p {
  color: var(--text-secondary);
}

.icon-steps svg{
  position: relative;
  width: 50px;
  height: 50px;
  stroke: var(--accent-gold); /* Ikon Emas */
  margin-bottom: 20px;
}

.step-number {
  position: absolute;
    top: -10px;    
    right: 15px;   
    font-size: 9rem; 
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); /* Tipis banget biar gak ganggu teks di card gelap */
    line-height: 1;
    z-index: 0;    
    user-select: none; 
}

.why-us-section {
    padding: 50px 30px;
    background-color: var(--bg-dark-main); /* Abu Tua */
    color: var(--text-primary);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap; /* Biar aman di mobile */
    max-width: 1200px;
    margin: 0 auto;
}

.left-content { flex: 1; min-width: 300px; }
.right-content { flex: 1.3; min-width: 300px; }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-title span {
    color: var(--accent-gold); /* Highlight Emas */
}

.section-subtitle {
  color: var(--text-secondary);
}

.reason-item {
    display: flex;
    margin-bottom: 10px;
    padding: 15px;
    background-color:var(--bg-dark-main); /* Reason Item agak terang */
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.reason-item:hover {
    border-color: rgba(230, 204, 178, 0.2);
    background: rgba(230, 204, 178, 0.02);
}

.reason-text h4 {
  color: var(--accent-gold); /* Judul Emas */
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.reason-text p {
  color: var(--text-secondary);
}

#card-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services {
  padding: 0 30px;
  margin-top: 0;
  background-color: var(--bg-light-main);
  transition: all 0.3s ease;
}

.services h1{
  padding-top: 80px; /* Ini yang bikin jarak aman di dalem */
  padding-bottom: 0;
  text-align: center;
  letter-spacing: 2px;
  color: var(--text-primary);
  font-weight: 700;
}

.services h1 span {
  color:var(--accent-gold);

}

.card {
  background-color: #222222;
  padding: 30px;
  max-width: 300px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
  border-color: rgba(230, 204, 178, 0.1);
}

.card h3 {
  color: var(--accent-gold);
}

.card p {
  color: var(--text-secondary);
}


.footer {
  background-color: #121212;
  color: var(--text-secondary);
  text-align: center;
  padding: 40px 0;
}

.socials i {
  color: rgba(255, 255, 255, 0.2);
  margin: 15px 15px;
  transition: 0.3s;
}

.socials i:hover {
  color: var(--accent-gold);
  transform: translateY(-5px);
}

/* Update CSS Contact Section */
.contact {
  padding: 100px 20px;
  background-color: var(--bg-dark-main); /* Abu-abu Tua sesuai urutan warna */
  text-align: center;
}

.container-contact {
  max-width: 600px;
  margin: 0 auto;
}

.contact-header h2 {
  color: var(--text-primary); /* Putih */
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-header h2 span {
  color: var(--accent-gold);
}

.contact-header p {
  color: var(--text-secondary); /* Abu-abu terang */
  margin-bottom: 50px;
  font-size: 1.1rem;
}

/* Styling Tombol WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background-color: var(--accent-gold); /* Warna Emas/Tan */
  color: #1a1a1a; /* Teks Hitam Pekat */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(230, 204, 178, 0.3); /* Shadow Emas Lembut */
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-5px); /* Efek melayang */
  box-shadow: 0 10px 30px rgba(230, 204, 178, 0.5);
  background-color:#ffffffb9; /* Hover jadi putih */
  color: #000;
}

.btn-whatsapp i {
  font-size: 1.4rem; /* Ukuran ikon WA */
}
/* --- MEDIA QUERIES (TETEP AMAN & UTUH DI SINI) --- */
@media screen and (max-width: 900px) {
  .containerSteps {
    flex-wrap: wrap;
    }
  }
@media screen and (max-width: 771px) {
  body, html {
    width: 100%;
  }
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 20px;
  }
  .logo h1 {
    font-size: 28px;
  }
  .hamburger {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 103;
  }
  .menu-item {
    display: block;
    font-size: 0.9rem;
    margin: 10px 0;
  }
  .hero {
    background-position: center;
  }
  .card {
    width: 90%;
    margin-bottom: 15px;
  }
  .hero-content h1 {
    font-size: 35px;
  }
  .hero-content p {
    font-size: 18px;
  }
  #card-services {
    justify-content: center;
    padding: 50px 20px;
  }
  #services {
    scroll-margin-top: 80px;
  }
  .split-layout {
    gap: 30px;
    padding: 0 20px;
  }
  .easySteps h1 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}



@media screen and (max-width: 525px) {
  .sort-container {
    justify-content: center;
  }
  #addService {
    justify-content: center;
    gap: 5px;
    width: 100%;
  }
  #btnNewServices {
    margin-top: 5px;
  }
}

@media screen and (max-width: 450px) {
  .hamburger span {
    display: block;
  }
  .linkNav {
    display: none;
  }
}