:root {
  --primary: #a09e9b;
  --whitee: #fff;
  --warnanya: #0a0909;
  --bg: #0f0f0f;
}
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
}

footer p {
  font-size: 0.8rem;
}
[data-aos] {
  transition-property: transform, opacity !important;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* =====================NAVBAR==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 7%;
  border-bottom: 1px solid #dbd8d2;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

/* Logo */
.navbar-logo img {
  height: 70px;
  width: auto;
  cursor: pointer;
}

/* Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.navbar-nav a {
  color: #fff;
  font-size: 0.9rem;
  position: relative;
}

/* DROPDOWN WRAPPER */
.dropdownkiyo {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.arrow-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.arrow-toggle i {
  transition: 0.3s;
}

/* Dropdown Panel */
.produk-dropdownkiyo {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 180px;
  background: #333;
  padding: 10px 0;
  border-radius: 6px;
  z-index: 999;
}

.dropdownkiyo.active .produk-dropdownkiyo {
  display: block;
}

.dropdownkiyo.active .arrow-toggle i {
  transform: rotate(180deg);
}

/* Mobile */
#hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 999999;
}
.produk-dropdownkiyo {
    background: #878282;
    border-left: 2px solid #777;
    width: 100%;
    text-align: center;
    display: none;               /* TETAP disembunyikan */
    flex-direction: column;      /* item turun ke bawah */
    gap: 6px;                    /* jarak antar item */
  }

  .dropdownkiyo.active .produk-dropdownkiyo {
    display: flex;               /* muncul hanya saat arrow diklik */
  }

  .produk-dropdownkiyo a {
    display: block;
    width: 100%;
  }

@media (max-width: 992px) {
  #hamburger-menu {
    display: block !important;
  }
  
  .navbar-nav {
    position: fixed;
    top: 90px;
    right: -280px;
    width: 200px !important;
    background: #1c1c1c;
    flex-direction: column;
    height: 100vh;
    padding: 10px 15px; /* padding dikecilkan */
    gap: 0.5px; /* jarak antar item */
    transition: 0.3s;
  }

  .dropdownkiyo {
    width: 70%;
    justify-content: space-between;
    padding: 1px 0; /* <--- kecilkan jarak vertikal */
    position: relative;
  }

  .navbar-nav a {
    padding: 1px 0; /* <--- bikin tulisan nggak terlalu jauh */
  }

  .produk-dropdownkiyo {
    background: #878282;
    border-left: 2px solid #777;
    width: 30%;

    display: none;
    flex-direction: column;
    gap: 6px;

    position: absolute; /* supaya mengikuti sidebar, bukan absolute */
    right: 100%;            /* <--- ini yang geser ke kiri */
    margin: 0;
    top: 100%;
    border-left: none;  /* optional: hapus garis kiri */
  }

  .dropdownkiyo.active .produk-dropdownkiyo {
    display: block;               /* muncul hanya saat arrow diklik */
  }

  .produk-dropdownkiyo a {
    display: block;
    width: 100%;
    line-height: 1rem;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  width: 100%;
  height: auto;       /* mengikuti tinggi konten/gambar */
  padding-top: 90px !important;
  padding-bottom: 20px;
  margin-bottom: -4rem;
  position: relative;
}
.hero-bg {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero img.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}
.section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* ================= RESPONSIVE ================= */
/* Tablet */
@media (max-width: 992px) {
  html {
    font-size: 85%;
  }
  .navbar-logo img {
    height: 50px;
  }
  #hamburger-menu {
    display: inline-block;
  }
  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #444444;
    width: 15rem;                 /* Lebar lebih kecil (dulu 30rem) */
    height: auto;                 /* Tidak full screen */
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-radius: 0 0 8px 8px;   /* Sudut bawah agak melengkung */
    align-items: center !important;
  }
  .navbar .navbar-nav.active {
    right: 0;
  }
  .navbar .navbar-nav a {
    width: 100%;
    font-size: 1rem;
    line-height: 3rem;
    color: #ffffff;
    transition: background-color 0.3s ease;
    align-items: flex-start; /* teks biar tetap mulai dari atas */
    height: auto;            /* jangan paksa tinggi tetap */
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
  }
  .navbar .navbar-nav .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
    margin-left: 1rem;
    padding: 0;
  }
  .navbar .navbar-nav .dropdown-content a {
    padding: 0.7rem 0;
    font-size: 1rem;
  }
  .navbar .navbar-nav .dropdown:hover .dropdown-content {
    display: block;
  }
  .navbar .navbar-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  /* === Dropdown agar muncul di samping saat mobile === */
  .navbar .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/* Phone */
@media (max-width: 480px) {
  html {
    font-size: 85%;
  }
  .hero img,
  .hero-bg {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }

  .about-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .about-header {
    margin-top: 0 !important;
  }
  .navbar-logo img {
    height: 40;   /* ukuran tetap aman di HP */
    width: auto;
  }
  #products .section-content h2 {
    font-size: 1.5rem;
  }
  #location .content h2 {
    font-size: 1.5rem;
  }
  #location .content p {
    font-size: 1rem;
  }
}

/* ==================TENTANG KAMI ==================================== */
/* ABOUT SECTION STYLE */
.about-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 4rem 0;
  color: #ffffff;
  margin-left: 2rem;
  margin-right: 2rem;
}
.about-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.about-header h3 {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.about-header h2 {
  font-size: 2.5rem;
  font-weight: 100;
}
.justify {
  text-align: justify;
  text-justify: inter-word;
}
.about-header .highlight {
  color: #51b8e4;
}
/* GRID LAYOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}
/* IMAGE STYLING */
.img-box img {
  width: 100%;
  height: auto;         /* biarkan natural */
  object-fit: cover;    /* boleh dihapus kalau mau full asli tanpa crop */
}
.large,
.small {
  width: 100%;          /* lebar ikut kotaknya / layar */
  height: auto;         /* tinggi mengikuti proporsi asli */
}
.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
/* TEXT */
.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  font-weight: 100;
  margin-bottom: 1.3rem;
}
.produk-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #a0a0a0;
  color: rgb(255, 255, 255);
  border-radius: 20px;
  font-weight: 100;
  margin-top: 12px;
  text-decoration: none;
}
.produk-btn:hover {
  background: #686464;    /* warna lebih gelap dari putih */
  color: #ffffff;            /* teks sedikit lebih gelap */
  transition: 0.3s ease;  /* animasi halus */
  cursor: pointer;
}
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .about-header h2 {
    font-size: 2rem;
  }
  .about-header h3 {
    font-size: 1.1rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .large {
    aspect-ratio: 4 / 3;
  }
  .small {
    aspect-ratio: 1 / 1;
  }
}

 /* ==========================LAYANAN KATEGORI ======================================= */
 /* LAYOUT UTAMA */
.services-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 4rem 0;
  color: #ffffff;
  margin-left: 2rem;
  margin-right: 2rem;
}
.services-header {
  text-align: center;
  margin-bottom: 0.5rem;
}
.services-header h3 {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0.9rem;
  font-family: "Poppins", sans-serif;
}
.services-header h2 {
  font-size: 2.3rem;
  font-weight: 100;
  line-height: 2.4rem;
  font-family: "Poppins", sans-serif;
}
.services-header .highlight {
  color: #51b8e4; /* warna kuning seperti contoh */
}
.card-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 10px 0;
}
.card {
  width: 480px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0.1rem 0.1rem;
}
.card-photo,
.light-photo {
  width: 100%;
  height: 140px;          /* tinggi tetap */
  border-radius: 12px;
  object-fit: cover;      /* foto rapi, tidak gepeng */
  background: #a8a29e;    /* fallback color */
}
.card-content {
  background: #010101;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.light-content {
  background: #d6c095;
  color: #000;
}
.card-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  border-bottom: 1px solid #766868;
  padding-bottom: 5px;
  font-weight: 100;
}
.card-content p{
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 100;
}
@media (max-width: 768px) {
  .card-section {
    flex-direction: column;     /* dari row → column */
    align-items: center;        /* biar card rapi di tengah */
    gap: 30px;                  /* jarak antar card */
  }
  .card {
    width: 100%;
    max-width: 320px;           /* biar gak terlalu lebar */
  }
}

 /* ===========================BAGAIMANA KAMI BEKERJA========================== */
.bkb-section {
  margin-top: 1rem;
  margin-bottom: 2rem;
  background: #0f0f0f;
  padding: 1rem 0;
  color: #fff;
  text-align: center;
}
.bkb-container {
  max-width: 1200px;
  margin: auto;
}
.bkb-subtitle {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.bkb-title {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 3rem;
}
.bkb-title span {
  color: #51b8e4; /* warna kuning seperti gambar */
}
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: #000000ad;
  padding: 2rem;
  border-radius: 16px;
  text-align: left;
  position: relative;
  box-shadow: 0 0 10px #00000055;
}
.step-label {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #635b5b;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 100;
  font-size: 0.9rem;
}
.step-card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 100;
}
.step-card p {
  font-weight: 100;
  margin-top: 0.5rem;
  opacity: 1;
  font-size: 0.9rem;
}
@media (max-width: 992px) {
  .steps-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .steps-wrap {
    grid-template-columns: 1fr;
  }
  .bkb-title {
    font-size: 2rem;
  }
}
/* =========================== PRODUK KATEGORI HOME ==================== */
.section-content-product-home {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 20px;
  display: block;
}
.product-category-home {
  width: 100%;
}
.product-category-home h3 {
  width: 100%;
  text-align: center;
  font-weight: 100;
  margin-top: 4rem;
}
.section-content-product-home h2 {
  text-align: center;
  font-weight: 100;
  margin-top: 2rem;
}
.product-grid-home {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  gap: 20px;
  justify-items: center;
  justify-content: center;
}
.product-card-home {
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  width: 100%;
  max-width: none;
  margin: 0.5rem 0 auto; /* biar tetap center */
}

.product-card-home img {
  width: 350px;
  height: auto;
  object-fit: contain;
}

.product-card-home h4 {
  margin-top: 0.5rem;
  font-size: 0.5rem;
  font-weight: 100;
  color: #ffffff !important;
}
.product-card-home:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.product-card-home:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.product-card-home h4 {
  color: #312e2e;
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0.3rem;
}
.product-card-home p {
  color: #4b4949;
  font-size: 0.7rem;
  margin: 0;
}
.product-card-home .price {
  color: #f5b01c;
  font-weight: 700;
  font-size: 1rem;
}
.product-card-home h4, 
.product-card-home p, 
.product-card-home .price {
  text-align: center;
}
 /* =========================== PRODUK KATEGORI ==================== */
.section-content-product {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 20px;
  display: block;
}
.product-category {
  width: 100%;
}
.product-category h3 {
  width: 100%;
  text-align: center;
  font-weight: 100;
  margin-top: 4rem;
}
.section-content-product h2 {
  text-align: center;
  font-weight: 100;
  margin-top: 6rem;
}
.product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  gap: 20px;
  justify-items: center;
  justify-content: center;
}
.product-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  width: 100%;
  max-width: none;
  margin: 1.5rem 0 auto; /* biar tetap center */
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.product-card h4 {
  margin-top: 15px;
  font-size: 0.5rem;
  font-weight: 100;
  color: #000;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.product-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.product-card h4 {
  color: #312e2e;
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0.3rem;
}
.product-card p {
  color: #4b4949;
  font-size: 0.7rem;
  margin: 0;
}
.product-card .price {
  color: #f5b01c;
  font-weight: 700;
  font-size: 1rem;
}
.product-card h4, 
.product-card p, 
.product-card .price {
  text-align: center;
} 

/* =============== LAYOUT DETAIL PRODUK MASUK =============== */
.produkmasuk-detail {
  display: flex;
  gap: 0.6rem;
  margin-top: 8rem;
  align-items: flex-start; /* vertikal tengah */
  justify-content: center; /* horizontal tengah */
  margin-bottom: -5rem;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  align-items: center; /* ⭐ gambar di tengah secara horizontal */
  justify-content: center; /* ⭐ gambar di tengah secara vertikal */
  gap: 0.5rem;
}
.thumbnail-list img {
  display: block;
  margin: 0 auto; /* push ke tengah */
}

/* Bagian kiri */
.produkmasuk-left {
  width: 35%;
}

/* Bagian kanan */
.produkmasuk-right {
  width: 35%;
}
.produkmasuk-right h2 {
  font-weight: 100;
  font-size: 1.7rem;
  margin-top: 2rem;
}
.harga-produkmasuk {
  color: #FFB000;
  font-size: 1.7rem;
  margin-top: -0.5rem;
}

.ukuran-produkmasuk {
  margin-bottom: 1rem;
}

.judul-produkmasuk {
  font-weight: 100;
  margin-top: 1rem;
  font-size: 1.1rem;
}

#spesifikasiProduk {
  font-size: 0.9rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

#deskripsiProduk {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.3rem;
  list-style-type: disc;
  text-align: justify; /* ini yang bikin rata kanan kiri */
}

/* =============== GAMBAR UTAMA =============== */
#mainImage {
  width: 100%;
  max-width: 350px;   /* ukuran aman agar tidak terlalu besar */
  display: block;
  margin: 0 auto 1rem; /* biar tetap center */
  border-radius: 1rem;
  object-fit: contain;
}

/* =============== THUMBNAIL FOTO PRODUK =============== */
.produkmasuk-thumbnail-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: nowrap;
}

.produkmasuk-thumbnail-container img {
  display: block; /* gambar tidak menyisakan whitespace bawaan inline */
}

.produkmasuk-thumbnail-container .thumbnail {
  display: inline-flex;     /* ⭐ fix pergeseran */
  vertical-align: top;      /* ⭐ pastikan rata atas */
  width: 55px;
  height: 55px;
  border-radius: 2px;
  object-fit: cover;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, border .2s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.produkmasuk-thumbnail-container .thumbnail:hover {
  transform: scale(1.05);
  opacity: .8;
}

.produkmasuk-thumbnail-container .thumbnail.active {
  border: 2px solid #51b8e4;
}

/* =============== WHATSAPP PEMESANAN =============== */
.wa-detail-produkmasuk {
  margin-top: 2rem;
  display: flex; /* WAJIB */
  justify-content: center;
  align-items: center;
}

.wa-btn-produkmasuk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #939393;
  color: white;
  padding: 10px 15px;
  font-size: 0.9rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: .25s ease;
}

.wa-btn-produkmasuk:hover {
  background-color: #5f5f5f;
  transform: scale(1.03);
}

.wa-icon-produk {
  width: 16px;
  height: 16px;
}
.wa-btn-produkmasuk {
  font-size: 0.8rem;
  font-weight: 100;
}
@media (max-width: 768px) {
  .produkmasuk-detail {
    flex-direction: column;
    text-align: center;
  }

  .produkmasuk-left, .produkmasuk-right {
    width: 100%;
  }

  .wa-detail-produkmasuk {
    justify-content: center;
  }
}
/* =================== TABEL BAWAH ===================== */
.tabel-bawah {
  max-width: 700px;
  margin: 3.5rem auto;
  padding: 0 20px;
}

.panel-tabel-bawah {
  background: var(--panel);
  padding: 32px;
  border-radius: 6px;
}

.panel-tabel-bawah h3 {
  color: #fff;
  margin-top: 1rem;
  font-weight: 100;
  text-align: center;
}

/* ===== FLEX WRAPPER ===== */
.price-tabel-bawah-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: nowrap;
}

/* ===== TABEL FIX WIDTH ===== */
.price-tabel-bawah-kiri,
.price-tabel-bawah-kanan {
  width: 300px;      /* ⭐ Lebar diperbesar agar tidak wrap */
  max-width: 300px;
  background: transparent;
  border-collapse: collapse;
  table-layout: fixed;     /* ⭐ wajib supaya kolom fix */
  border: 1px solid #ffffff50;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* ===== SEL TABEL ===== */
.price-tabel-bawah-kiri td,
.price-tabel-bawah-kanan td,
.price-tabel-bawah-kiri th,
.price-tabel-bawah-kanan th {
  width: 50%;
  padding: 6px 6px;
  font-size: 0.7rem;
  text-align: center;
  color: #fff;
  border: 1px solid #ffffff50;
  line-height: 1rem;

  /* ⭐⭐ FIX AGAR TIDAK TURUN BARIS */
  white-space: nowrap;       /* teks tidak akan wrap */
  overflow: hidden;          /* sembunyikan jika kepanjangan */
  text-overflow: ellipsis;   /* tampilkan "..." jika panjang */
}

/* ===== RESPONSIVE HP ===== */
@media (max-width: 600px) {
  .price-tabel-bawah-wrap {
    flex-direction: column;
    gap: 16px;
  }

  .price-tabel-bawah-kiri,
  .price-tabel-bawah-kanan {
    width: 100%;
    max-width: 100%;
  }

  /* HP tetap no-wrap */
  .price-tabel-bawah-kiri td,
  .price-tabel-bawah-kanan td {
    white-space: nowrap;
  }
}
/* =================== HASIL KERJA SECTION =================== */
.hk-section {
  background: #0f0f0f;
  padding: 4rem 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.hk-content {
  width: 88%;
  max-width: 1300px;
  margin: auto;
}
.hk-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.hk-header h3 {
  font-size: 1rem;
  font-weight: 100;
  color: #cfcfcf;
}
.hk-header h2 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-top: 0.4rem;
}
.hk-header .highlight {
  color: #51b8e4;
}
.hk-box {
  display: flex;
  gap: 1.8rem;
  padding: 1.5rem;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: transparent;     /* tetap dark seperti screenshot */
  margin-bottom: 2rem;
  align-items: flex-start;
}
.foto-wrapper {
  width: 50%;
}
.foto-hk img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 4px;
}
.hk-text {
  width: 50%;
}
.hk-text h3 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 0.3rem;
}
.hk-text p {
  margin: 0;
  font-weight: 100;
}
.hk-text ul {
  padding-left: 1.2rem;
  margin-top: 0.8rem;
  line-height: 1.6;
}
.hk-text ul li {
  list-style: disc;
  font-size: 0.95rem;
}
.lihat-selengkapnya {
  display: inline-block;
  margin-top: 4rem;
  font-size: 0.95rem;
  color: #e5e5e5;
  text-decoration: none;
  transition: 0.2s;
}
.lihat-selengkapnya:hover {
  color: #ffffff;
  letter-spacing: 0.5px;
}
.hk-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #cfcfcf;
}
.hk-box.right {
  display: flex;
  flex-direction: row-reverse; /* foto pindah ke kanan */
  gap: 1.8rem;
  padding: 1.5rem;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: transparent;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.hk-box.right .lihat-selengkapnya,
.hk-box.right .lihat-selengkapnya-knn {
  display: block;
  text-align: right;
  margin-top: 4rem;
  color: #fff;
}
.hk-box.right .hk-text p {
  text-align: right;
}
.hk-box.right .hk-text h3{
  text-align: right;
  text-transform: uppercase;
}
.hk-box.right .hk-text {
  text-align: right;
}
.hk-box.right .hk-text ul {
  padding-right: 1.2rem;
  padding-left: 0;
}
.hk-box.right .hk-text ul li {
  list-style: disc;
  direction: rtl; /* supaya bullet tetap kiri */
  text-align: right;
}
.semua-proyek {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;   /* center */
  padding: 0.9rem 2rem;
  background: #cfcfcf;   /* abu-abu */
  color: #000;
  font-size: 1rem;
  font-weight: 100;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.25s ease;
  opacity: 1;
}
.semua-proyek:hover {
  opacity: 0.5;
}
@media (max-width: 900px) {
  .hk-box.right {
    flex-direction: column; /* balik vertikal */
  }
  .hk-box.right .hk-text {
    text-align: left; /* biar enak dilihat di HP */
  }
  .hk-box.right .hk-text ul {
    direction: ltr;
    padding-left: 1.2rem;
  }
  .hk-box {
    flex-direction: column;
  }
  .foto-wrapper,
  .hk-text {
    width: 100%;
  }
  .foto-hk img {
    height: 200px;
  }
}
/* HKHKHKHKHKHKHKKHHKKHKHKHKHKHKHKHKHKHKHKHKKHKHKHKHKHKHKHKHKHKHKHKHKHKHKHKHKHKHKHK */
.hkall-section {
  background: #0f0f0f;
  padding: 4rem 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.hkall-content {
  width: 88%;
  max-width: 1300px;
  margin: auto;
}
.hkall-header {
  text-align: center;
  margin-bottom: 2.8rem;
  margin-top: 60px;
}
.hkall-header h3 {
  font-size: 2rem;
  font-weight: 100;
  color: #ffffff;
}
.hkall-box {
  display: flex;
  gap: 1.8rem;
  padding: 1.5rem;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: transparent;     /* tetap dark seperti screenshot */
  margin-bottom: 2rem;
  align-items: flex-start;
}
.hkall-wrapper {
  width: 50%;
}
.foto-hkall img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 4px;
}
.hkall-text {
  width: 50%;
}
.hkall-text h3 {
  font-size: 2.5rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.hkall-text p {
  margin: 0;
  font-weight: 100;
}
.hkall-text ul {
  padding-left: 1.2rem;
  margin-top: 0.8rem;
  line-height: 1.6;
}
.hkall-text ul li {
  list-style: disc;
  font-size: 0.95rem;
}
.lihat-hkall {
  display: inline-block;
  margin-top: 4rem;
  font-size: 0.95rem;
  color: #e5e5e5;
  text-decoration: none;
  transition: 0.2s;
}
.lihat-hkall:hover {
  color: #ffffff;
  letter-spacing: 0.5px;
}
.hkall-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #cfcfcf;
}
.hkall-box.right {
  display: flex;
  flex-direction: row-reverse; /* foto pindah ke kanan */
  gap: 1.8rem;
  padding: 1.5rem;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: transparent;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.hkall-box.right .lihat-hkall,
.hkall-box.right .lihat-hkall-knn {
  display: block;
  text-align: right;
  margin-top: 4rem;
  color: #fff;
}
.hkall-box.right .hkall-text p {
  text-align: right;
}
.hhkallk-box.right .hkall-text h3{
  text-align: right;
}
.hkall-box.right .hkall-text {
  text-align: right;
}
.hkall-box.right .hkall-text ul {
  padding-right: 1.2rem;
  padding-left: 0;
}
.hkall-box.right .hkall-text ul li {
  list-style: disc;
  direction: rtl; /* supaya bullet tetap kiri */
  text-align: right;
}
@media (max-width: 900px) {
  .hkall-box.right {
    flex-direction: column; /* balik vertikal */
  }
  .hkall-box.right .hkall-text {
    text-align: left; /* biar enak dilihat di HP */
  }
  .hkall-box.right .hkall-text ul {
    direction: ltr;
    padding-left: 1.2rem;
  }
  .hkall-box {
    flex-direction: column;
  }
  .hkall-wrapper,
  .hkall-text {
    width: 100%;
  }
  .foto-hkall img {
    height: 230px;
  }
}
/* HK111111111111111111111111111111111111111111111111111111111111111 */
/* ===== SECTION PROJECT ===== */
.project-section {
  text-align: center;
  padding: 4rem 0;
  margin-top: 60px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
/* Judul utama */
.project-title1 {
  font-size: 1rem;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 1rem;
}
.project-title2 {
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 3rem;
}
/* Subtitle kotak oval */
.atasan {
  display: inline-block;
  background: #2b2b2b;
  padding: 0.4rem 1.3rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
  font-size: 1rem;
}
/* Gambar layout utama */
.main-hk img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  margin-bottom: 2rem;
}
/* Garis pembatas */
.separator {
  width: 90%;
  margin: 3rem auto;
  border: none;
  border-top: 1px solid #a4a4a4;
}
.separator4 {
  width: 90%;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
/* Deskripsi kecil */
.des-hk {
  margin-bottom: 1rem;
  margin-top: 1rem;
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.5;
}
/* Grid gambar */
.hk-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}
/* Gambar besar kiri */
.big-hk {
  width: 600px;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.big-hk-ds,
.big-hk-ga {
  width: 500px;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.big-hk-aja  {
  align-items: center;
  width: 500px;
  border-radius: 12px;
}
.big-hk4 {
    width: 500px;
  border-radius: 12px;
}
/* 2 foto kecil kanan */
.small-hk-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.small-hk-wrapper img {
  width: 400px;
  border-radius: 12px;
}
.small-hk4-wrapper img {
  width: 500px;
  border-radius: 12px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-hk img {
    width: 100%;
  }
  .hk-grid {
    flex-direction: column;
    align-items: center;
  }
  .big-hk,
  .big-hk-aja,
  .big-hk-ds,
  .big-hk-ga,
  .big-hk4 {
    width: 90%;
  }
  .small-hk-wrapper,
  .small-hk4-wrapper {
    display: flex;
    flex-direction: column;   /* turun semua */
    justify-content: center;
    align-items: center;      /* center */
    width: 100%;
  }
  .small-hk-wrapper img {
    width: 90%;       /* bisa diganti 50–100% */
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }
   .small-hk4-wrapper img {
    width: 90%;       /* bisa diganti 50–100% */
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }
}

/* =================== SECTION KENAPA MEMILIH KAMI ========== */
.kmk-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  background: #0d0d0d;
  padding: 4rem 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.kmk-container {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;        /* >>> INI YANG PENTING <<< */ 
  text-align: center;
}
.kmk-subtitle {
  font-size: 1,2rem;
  font-weight: 100;
  color: #cccccc;
  margin-bottom: 0.5rem;
}
.kmk-title {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.kmk-title span {
  color: #51b8e4;
}
.kmk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.kmk-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  height: 260px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.kmk-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.kmk-card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
  text-align: left;
}
.kmk-card-overlay h3 {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 100;
  margin-bottom: 6px;
}
.kmk-card-overlay p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.4;
}
/* Hover Effect */
.kmk-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
  .kmk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .kmk-grid {
    grid-template-columns: 1fr;
  }
  .kmk-title {
    font-size: 30px;
  }
}

/* ===== LOCATION SECTION ===== */
.loc-section {
  padding: 2rem 10%;
  display: block;
  justify-content: center;
  align-items: center;
  background-color: #101010;
}
.loc-section h2 {
  font-size: 2.3rem;
  font-weight: 100;
  margin-bottom: 1rem;
  text-align: center;
  color: #ffffff;
}
.loc-section p {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1;
  font-weight: 100;
}
.maps-link {
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
  transition: 0.3s ease;
  font-weight: 100;
  text-align: center;
}
.maps-link:hover {
  opacity: 0.5;
}
#location, .loc-section, .loc-content {
  text-align: center;
}
.map-container {
  width: 100%;
  max-width: 350px;   /* ukuran kotak map */
  height: 250px;       /* tinggi kotak map */
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .loc-section {
    padding: 60px 15px;
  }
  .loc-section h2 {
    font-size: 2rem;
  }
  .map-container iframe {
    height: 100;
  }
  .maps-link {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
