  /* General Reset */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
  }

  body {
    background-color: #e0e0e0;
  }

  .container {
    width: 80%;
    margin-inline: auto;
    
  }

  @media (max-width: 992px) {
    .container {
      width: 90%;
    }
  }


  /* topbar */
.topbar {
  background-color: rgba(255, 255, 255, 0.1); /* putih transparan */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 14px;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.topbar.hide {
  transform: translateY(-100%);
}

.topbar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.topbar-left {
  margin-left: -45px; /* Samain kayak logo */
}

.topbar-left i {
  margin-right: 6px;
}

.topbar-right a {
  color: rgb(52, 50, 50);
  margin-left: 10px;
  text-decoration: none;
  font-size: 18px;
}

.topbar-right i {
  color: white;
  margin-left: 15px;
  font-size: 16px;
  vertical-align: middle;
}

.topbar-address {
  margin-left: 6px;
  font-style: normal;
  color: white;
  font-size: 13.5px;
  white-space: nowrap;
}



.topbar a:hover {
  color: #c0c0c0;
}

.topbar.hide + .navbar {
  top: 0;
}



/* Atur navbar agar turun dikit karena ada topbar */

/* topbar */

  /* Navbar */
  .navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    left: 0;
    transition: background-color 0.3s ease;
    height: 87px;
    background-color: rgba(255, 255, 255, 0.1); /* transparan */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  .navbar-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-box .menu {
    display: flex;
    gap: 30px;
  }

  .navbar-box .menu li {
    list-style: none;
  }

  .navbar-box .menu li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
  }

  .navbar-box .menu li a:hover {
    border-bottom: 3px solid #ffffff;
  }

  .navbar-box .ri-menu-3-line {
    display: none;
    color: white;
  }


  .navbar.scrolled {
    background-color: #222526;
    border-bottom: 1px solid #00000022;
  }

  .navbar.scrolled .menu li a {
    color: #ffffff;
  }

  .navbar.scrolled .ri-menu-3-line {
    color: #ffffff;
  }

  .navbar-box img#logo {
    height: 32px;
    margin-left: -45px;
    transition: filter 0.3s ease;
    display: block;
    margin-bottom: 20px;
  }

  /* toogle mobile */
/* navbar */

  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center ;
    overflow: hidden;
    padding-top: 100px;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('/assets/back1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
  }

  .hero .container {
    position: relative;
    z-index: 1;
    width: 85%; /* Biar sejajar dengan container global */
    margin-inline: auto;
    padding-inline: 0; /* Atau 16px kalau perlu */
    
  }


  .hero-box {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    color: white;
    gap: 40px;
    padding-top: 80px;
    margin-top: -90px;
  }

  .hero-box > div {
    padding-left: 0;
  }
  

  .hero-box h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
  }

  .hero-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 540px;
    text-align: left;
  }

  .hero-box a {
    display: inline-block;
    background-color: #f9f5f6;
    color: rgb(20, 19, 19);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .hero-box a:hover {
    background-color: #000000;
    color: #ffffff;
  }

  .hero-box img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: contain;
  }

  .hero-content {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  padding-left: 0; /* Sesuaikan sesuai layout */
}

.menu-close {
  display: none; /* hidden by default */
}

@media (max-width: 768px) {

  /* === TOPBAR === */
  .topbar {
  width: 100%;
  background-color: #333;
  color: white;
}

.topbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

  .topbar-left, .topbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .topbar-right {
  display: none;
}

/* Biar sisi kiri tetap tampil rapi */
.topbar-left {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}

  /* === NAVBAR === */
  .navbar {
    padding: 10px 16px;
  }

  .navbar-box {
    justify-content: space-between;
    align-items: center;
  }

  .navbar-box .ri-menu-3-line {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

  .navbar-box .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 6px;
    z-index: 999;
    transition: right 0.3s ease;
  }

  .navbar-box .menu.menu-active {
    right: 0;
  }

  .navbar-box .menu li a {
    color: white;
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }

  /* Logo kecilin dikit */
  .navbar-box img#logo {
    height: 28px;
  }

  .menu-close {
    font-size: 28px;
    color: white;
    cursor: pointer;
    text-align: right;
    padding: 10px 0 10px 5px;
    display: block;
  }
    .menu-close {
    display: block;
    background: none;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    margin: 0 0;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    
  }

  .menu.menu-active {
    padding-top: 20px; /* buat jarak menu ke atas */
  }

  .menu.menu-active li {
    margin-bottom: 0; /* biar jarak antar item enak */
  }
}




  /* box */
 .box-orang {
  position: relative;
  margin-top: -40px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222526;
  color: white;
  padding: 40px;
  border-radius: 20px;
  width: 80%;
  min-height: 250px;
  margin-inline: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: visible; /* biar gambar boleh keluar */
}

.box-orang .isi-box {
  flex: 1;
  padding-right: 20px;
  z-index: 2;
}

.box-orang .isi-box h3 {
  font-size: 0.9em;
  
}

.box-orang .isi-box h1{
  font-size: 2em;
}

.box-orang .isi-box p {
  font-size: 16px;
  line-height: 1.5;
}

.box-orang .btn-hubungi {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: white;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.box-orang .btn-hubungi:hover {
  background: #E0E0E0;
  color: black;
}

/* ✅ Trik agar gambar bisa keluar dari atas */
.box-orang .gambar-orang {
  position: absolute;
  right: 40px; /* sesuai padding kanan */
  bottom: 0;
  z-index: 1;
}

.box-orang .gambar-orang img {
  height: 340px; /* sesuaikan tinggi total gambar */
  margin-top: -100px; /* ini yang bikin keluar dari atas */
  display: block;
}


/* service */


  /* layanan 2 */
  .modena-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  gap: 40px;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.modena-service .left {
  flex: 1;
  position: relative;
}

.modena-service .badge {
  position: absolute;
  top: -20px;
  left: -40px;
  background-image: url('/assets/images/back.jpg');
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.modena-service .badge h1 {
  font-size: 70px;
  margin-bottom: 5px;
  line-height: 1;
}

.modena-service .image img {
  width: 100%;
  max-width: 5600px;
  border-radius: 30px;
  margin-left: 20px; /* <== ini yang ditambah */

}

.modena-service .right {
  flex: 1;
  max-width: 620px;
  
}

.modena-service .tag {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 500;
  
}

.modena-service .right h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modena-service .right p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}

.modena-service .features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.modena-service .features li {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}

.modena-service .wa-button {
  display: inline-flex;
  align-items: center;
  background-color: #2f3130;
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  gap: 10px;
  transition: background 0.3s;
}

.modena-service .wa-button img {
  width: 22px;
  height: 22px;
}

/* keyframe */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .modena-service {
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
  }

  .modena-service .right {
    order: 1;
    width: 100%;
  }

  .modena-service .right .badge-text {
    display: inline-block;
    background: #222;
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .modena-service .right h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .modena-service .right p,
  .modena-service .features li {
    font-size: 15px;
    line-height: 1.5;
  }

  .modena-service .features {
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .modena-service .wa-button {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .modena-service .left {
    order: 2;
    width: 100%;
    position: relative;
    margin-top: 10px;
  }

  .modena-service .image {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }

  .modena-service .image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  .modena-service .badge {
  position: absolute;
  top: 1px;
  left: -13px; /* geser ke kiri */
  background: black;
  color: white;
  width: 100px;
  height: 100px;
  padding: 16px;
  font-size: 14px;
  border-radius: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


  .modena-service .badge h1 {
    font-size: 28px;
    margin: 0;
  }

  .modena-service .badge p {
    font-size: 12px;
    margin: 0;
    text-align: center;
  }
}

/* layanan 2 */

  /* Layanan */

  /* outher service */
.layanan-section {
  background-image: url('/assets/images/Product/kitchen.jpg'); /* Sesuaikan dengan path kamu */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
}

.layanan-overlay {
  background-color: rgba(34, 37, 38, 0.9); /* abu-abu gelap transparan */
  padding: 100px 32px;
  width: 100%;
  min-height: 100vh; /* BIAR FULL SATU LAYAR */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layanan-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 20px;
  gap: 32px;
}

.layanan-heading-left {
  flex: 1;
  min-width: 300px;
}

.layanan-heading-left .sub-title {
  display: inline-block;
  background: #222526 ;
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.layanan-heading-left h2 {
  font-size: 32px;
  font-weight: 700;
}

.layanan-heading-right {
  flex: 1;
  min-width: 300px;
}

.layanan-heading-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-top: 40px;
}

.layanan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-layanan {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.card-layanan:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 200px; /* Atur sesuai selera, misal 180px juga oke */
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.card-body {
  padding: 24px;
  color: #333;
}

.card-body span {
  font-size: 14px;
  font-weight: 600;
  color: #222526;
  margin-bottom: 2px; /* diperkecil */
  display: inline-block;
}

.card-body h3 {
  font-size: 20px;
  margin: 4px 0 6px;
  color: #222526;
}

.card-body p {
  font-size: 15px;
  color: #222526;
  margin-bottom: 30px;
}

.btn-wa {
  background-color: #222526;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-wa:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .layanan-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .layanan-heading-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .layanan-cards {
    grid-template-columns: 1fr;
  }
}

/* outher service end */


/* keunggulan Layanan */
.layanan {
  padding-top: 80px;
  padding-bottom: 150px;
}

.layanan-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto;
}

.h5-box {
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 10px rgba(34, 37, 38, 0.9);
  text-align: center;
}

.h5-box h5 {
  font-size: 16px;
  color: #222526; /* kamu bisa ganti ke #888 kalau tetap mau abu-abu */
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}


.layanan-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222526;
}

.layanan-header h2 span {
  color: #222526;
}

.layanan-header p {
  font-size: 16px;
  color: #222526;
  line-height: 1.6;
}

/* Layanan Box */
.layanan-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.layanan-box .box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.layanan-box .box:hover {
  background-color: #222526;
}

.layanan-box .box:hover > * {
  color: white;
}

.layanan-box .box img {
  transition: filter 0.3s ease;
}

.layanan-box .box:hover img {
  filter: brightness(0) invert(1);
}

.layanan-box .box i {
  color: #222526;
}

.layanan-box .box i {
  font-size: 60px; /* Atau sesuaikan misal 40px, 48px */
  color: #222526;
  display: block;
  margin-bottom: 15px;
}



.layanan-box .box h2 {
  margin-top: 20px;
  margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .layanan-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .layanan-header h2 {
    font-size: 2rem;
  }

  .layanan-header p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .layanan-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .layanan-header h2 {
    font-size: 1.75rem;
  }

  .layanan-header p {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .layanan-header h2 {
    font-size: 1.5rem;
  }

  .layanan-header p {
    font-size: 13px;
  }

  .layanan-box .box {
    padding: 16px;
  }

  .layanan-box .box h2 {
    font-size: 16px;
  }

  .layanan-box .box p {
    font-size: 13px;
  }

  .layanan-box .box img {
    width: 60px !important;
    height: 50px !important;
  }
}

@media (max-width: 480px) {
  .h5-box {
    padding: 8px 16px;
    font-size: 14px;
  }

  .h5-box h5 {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .card {
    padding: 16px;
    font-size: 14px;
  }

  .testimonial-left h2 {
    font-size: 24px;
  }
}

/* keunggulan Layanan */

/* box child layanan */
.testimonial-section {
  position: relative;
  background: url('/assets/images/Product/testimoni.jpg') center center / cover no-repeat;
  padding: 80px 0 30px;
  color: white;
  overflow: hidden;
  z-index: 0; /* pastikan ini default aja */

}

.testimonial-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(34, 37, 38, 0.9);
  z-index: 0;

}

.testimonial-container {
  position: relative;
  z-index: 1; /* Pastikan konten di atas overlay */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.testimonial-left {
  flex: 1;
  max-width: 40%;
  padding-left: 0;
  margin-left: -60px;
}

.testimonial-left .tag {
  background: #e0e0e0;
  color: #222526;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 15px;
}

.testimonial-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.testimonial-right {
  flex: 1;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-left.extra-left {
  margin-left: -60px; /* ← GESER LEBIH KIRI SEDIKIT */
}

.testimonial-slider {
  display: flex;
  transition: transform 1s ease-in-out;
   /* ← GESER CARDS KE KANAN */

}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 2%;
  justify-content: center;
}

.card {
  background: white;
  color: #222526;
  padding: 20px;
  border-radius: 20px;
  width: 48%;
  min-height: 340px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.card strong {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.city {
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-controls button {
  background-color: white;
  color: black;
  border: none;
  padding: 8px 12px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s ease;
  
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.button-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.button-wrapper:hover button {
  opacity: 1;
  visibility: visible;
}



.testimonial-controls button:hover {
  background-color: #ddd;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: white;
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .testimonial-left {
    max-width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .testimonial-left.extra-left {
    margin-left: 0; /* hilangkan dorongan kiri di mobile */
  }

  .testimonial-right {
    max-width: 100%;
    margin-top: 30px;
  }

  .testimonial-slide {
    flex-direction: column;
    gap: 0;
  }

  .card {
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }

  .testimonial-controls {
    flex-direction: column;
    margin-top: 20px;
  }

  .button-wrapper {
    display: none; /* hide panah kiri-kanan di mobile */
  }

  .testimonial-dots {
    margin-top: 10px;
  }
  .testimonial-slide .card:not(:first-child) {
    display: none;
  }
}


/* box child layanan */

/* pertanyaan */
.faq-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
  min-height: 80vh; /* <-- tambahkan baris ini */
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: bold;
}

.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.image-box {
  flex: 1 1 400px;
  max-width: 500px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-box {
  flex: 1 1 500px;
  max-width: 700px;
}

.accordion {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion input[type="checkbox"] {
  display: none;
}

.accordion label {
  display: block;
  padding: 18px 50px 18px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  background: #f9f9f9;
}

.accordion label::after {
  content: "▾";
  position: absolute;
  right: 20px;
  font-size: 18px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion input:checked + label::after {
  transform: rotate(180deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  background: #f2f2f2;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion input:checked ~ .answer {
  max-height: 300px;
  padding: 15px 20px;
}

/* hubungi kami */
.cta-section {
  background-color: #e0dcdc;
  padding: 50px 40px 20px;
  min-height: 25vh;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-text h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  color: #111;
}

.btn-hubungi {
  background-color: #111;
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
    font-size: 18px; /* ⬅️ font lebih besar */

}

.btn-hubungi:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-text h3 {
    font-size: 24px;
  }

  .btn-hubungi {
    padding: 14px 28px;
    font-size: 16px;
  }
}


/* whatsapp */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
  }
  .wa-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* whatsapp */

  /* Footer */
.footer {
  background: #0d0d0d;
  color: #f0f0f0;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 10% 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin: 0; /* Buat container-nya gak ada margin */
}

.footer-logo img {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 0 0 0; /* atas kanan bawah kiri: kasih jarak ke bawah aja */
  padding: 0;
  margin-top: -40px;
}


.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-desc {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social a {
  display: inline-block;
  color: white;
  font-size: 20px;
  margin-right: 14px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ccc;
}

.footer-middle {
  flex: 1;
  min-width: 220px;
}

.footer-middle h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 30px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 40px 24px;
  }

  .footer-left,
  .footer-middle,
  .footer-contact {
    margin-bottom: 30px;
  }
}




  /* rubah */
  /* Footer */

  /* Sticky Navbar */






  /* Responsive untuk Mobile */
  @media (max-width: 768px) {
    /* Container agar tidak terlalu lebar di mobile */
    .container {
      width: 90%;
      padding-inline: 10px;
    }


    /* Hero section */
    .hero-box {
      flex-direction: column;
      gap: 20px;
      padding: 40px 0;
      text-align: center;
    }

    .hero-content h1 {
      font-size: 28px;
    }

    .hero-content p {
      font-size: 14px;
    }

    /* Layanan */
    .image-row,
    .layanan-cards {
      grid-template-columns: 1fr !important;
      gap: 20px;
    }

    

    /* Footer */

  }


/* Mobile XS (<= 480px) */
@media (max-width: 480px) {
  .hero {
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    min-height: 50vh;
  }

  .hero-box {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 20px;
    gap: 16px;
  }

  .hero-box h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero .container {
    width: 100%;
    padding-inline: 12px;
  }

  .hero-box img {
    max-width: 100%;
    border-radius: 20px;
  }
}


@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 50vh;
  }

  .hero-box {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
    padding-top: 20px;
  }

  .hero-box h1 {
    font-size: 2rem;
    text-align: left;
  }

  .hero-box p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero .container {
    padding-inline: 16px;
  }

  .hero-box img {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 992px) {
  
  .hero-box {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 32px;
  }

  .hero-box h1 {
    font-size: 2.4rem;
  }

  .hero-box p {
    font-size: 1.1rem;
  }
}

@supports (padding: max(0px)) {
  .hero {
    padding-top: max(120px, env(safe-area-inset-top));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
  }
}



@media (max-width: 430px) {
  .box-orang {
    flex-direction: column;
    padding: 20px;
    width: 92%;
    margin-top: -16px;
  }

  .box-orang .isi-box {
    padding-right: 0;
    text-align: center;
  }

  .box-orang .isi-box h3 {
    font-size: 0.95rem;
  }

  .box-orang .isi-box h1 {
    font-size: 1.3rem;
  }

  .box-orang .isi-box p {
    font-size: 13.5px;
  }

  .box-orang .btn-hubungi {
    padding: 8px 14px;
    font-size: 13px;
  }

  .box-orang .gambar-orang {
    display: none;
  }
}

@media (max-width: 768px) {
  .box-orang {
    flex-direction: column;
    padding: 24px;
    width: 90%;
    margin-top: -20px;
    min-height: auto;
  }

  .box-orang .isi-box {
    padding-right: 0;
    text-align: center;
  }

  .box-orang .isi-box h3 {
    font-size: 1rem;
  }

  .box-orang .isi-box h1 {
    font-size: 1.5rem;
  }

  .box-orang .isi-box p {
    font-size: 14px;
  }

  .box-orang .btn-hubungi {
    padding: 8px 16px;
    font-size: 14px;
  }

  .box-orang .gambar-orang {
    display: none;
  }
}
