@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  /* Atur padding-top agar konten tidak tertutup navbar fixed */
  padding-top: 110px;
}

/* Penampung Konten Global */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* START NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 93%;
  max-width: 1200px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3e5f44;
  padding: 15px 25px;
  margin: 1.5rem auto;
  border-radius: 60px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.navbar .profile {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Cegah gambar/teks mengecil */
  flex-shrink: 0;
}

.navbar .profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar .profile p {
  color: #ffc107;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.menu-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar .menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;

  /* Ini adalah cara yang rapuh untuk center menu */
  /* Tapi kita biarkan di desktop */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbar .menu-list li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.navbar .menu-list li a:hover {
  color: #ffc107;
  border-bottom: 2px solid #ffc107;
}

.contact-btn-container {
  display: flex;
  align-items: center;
}

.contact-btn {
  color: #3e5f44;
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: 2px solid #ffffff;
  /* Cegah tombol mengecil */
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: #ffc107;
  color: #ffffff;
  border-color: #ffc107;
}

.nav-toggle {
  display: none; /* sembunyikan di dekstop */
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  padding: 0 5px;
  z-index: 1000;
}
/* END NAVBAR */

/* START HOME */

/* Hapus margin besar, karena sudah dihandle .container */
.menu-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.menu-name .p1 {
  font-size: 28px;
}

.menu-name h1 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 1.5rem;
}

.menu-name h1 span {
  color: #ffc107;
  font-style: italic;
}

.menu-name p {
  font-size: 20px;
}

.menu-home .menu-name .button {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Agar tombol bisa stack di mobile */
}

.home-button {
  background-color: #3e5f44;
  color: white;
  padding: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  letter-spacing: 2px;
  transition: 0.3s ease, padding-right 0.3s ease;
}

.home-button a {
  text-decoration: none;
  color: #ffffff;
}

.home-button .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -45px;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.home-button:hover {
  padding-right: 55px;
}

.home-button:hover .arrow {
  right: 5px;
  opacity: 1;
}

.home-button .arrow img {
  height: 33px;
  width: 33x;
}

.menu-home .menu-button {
  color: black;
  padding: 10px;
  margin-top: 20px;
  border-radius: 50px;
  background-color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.menu-home .menu-button a {
  text-decoration: none;
  color: #000000;
}

.menu-home .menu-button:hover {
  background-color: #ffc107;
  color: black;
  border: #ffc107;
}

/* Mengatur ulang layout gambar agar responsif */
.menu-home .menu-pict {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  /* Beri rasio aspek agar tidak "loncat" saat load */
  aspect-ratio: 1 / 1;
}

.menu-home .menu-pict .background {
  position: absolute;
  width: 90%;
  height: auto;
  max-width: 33rem;
  z-index: 1;
}

.menu-home .menu-pict .photo {
  position: relative; /* ganti dari absolute */
  width: 100%;
  height: auto;
  max-width: 575px;
  z-index: 2;
}

/* END HOME */

/* START SERVICES */

/* Hapus margin besar, dihandle .container */
.menu-services {
  margin: 0;
}

.menu-services .services p {
  font-size: 28px;
}

.menu-services .services h1 {
  font-size: 40px;
  font-weight: 600;
}

.menu-services .services h1 span {
  font-style: italic;
  color: #ffc107;
}

.menu-services .services .button-services {
  display: flex;
  justify-content: end;
}

.services-button {
  background-color: #3e5f44;
  color: white;
  padding: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  letter-spacing: 2px;
  transition: 0.3s ease, padding-right 0.3s ease;
}

.services-button .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -45px;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.services-button:hover {
  padding-right: 55px;
}

.services-button:hover .arrow {
  right: 5px;
  opacity: 1;
}

.services-button .arrow img {
  height: 33px;
  width: 33x;
}

/* Grid Service Responsif */
.menu-services .services .grid-3 {
  display: grid;
  /* 4 kolom di desktop */
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-services .services .grid-3 .onegrid {
  border-radius: 20px;
  background-color: #dddad0;
}

.menu-services .services .grid-3 .onegrid .img-grid {
  height: 60px;
  width: 60px;
  padding: 1.5rem 2rem;
}

.menu-services .services .grid-3 .onegrid .text {
  padding: 1rem 2rem;
}

.menu-services .services .grid-3 .onegrid .text h4 {
  font-size: 23px;
  padding-top: 2rem;
}

.menu-services .services .grid-3 .onegrid .text p {
  font-size: 15px;
}

.menu-services .services .grid-3 .onegrid .text .button a {
  padding-top: 1rem;
  color: #3e5f44;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.menu-services .services .grid-3 .onegrid .text .button a:hover {
  color: #ffc107;
}

.iklan-services img.yellow {
  margin-top: 0;
}

/* END SEVICES */

/* START ABOUT */

#about {
  background-color: #3e5f44;
}

/* Hapus margin besar, dihandle .container */
.menu-about {
  margin-left: 0;
  margin-right: 0;
}

.menu-about .grid-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.menu-about .grid-2 .mypicture img {
  width: 100%;
  max-width: 374px;
  height: auto;
  margin: 0; /* Hapus margin */
}

.menu-about .grid-2 .myprofile {
  margin: 0; /* Hapus margin */
}

.menu-about .grid-2 .myprofile .text1 {
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
}

.menu-about .grid-2 .myprofile h1 {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
}

.menu-about .grid-2 .myprofile h1 span {
  font-style: italic;
  color: #ffc107;
}

.menu-about .grid-2 .myprofile .text2 {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}

.menu-about .grid-2 .myprofile .point {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Izinkan wrapping di mobile */
  gap: 1.5rem;
  padding-top: 2rem;
}

.menu-about .grid-2 .myprofile .point h2 {
  font-size: 35px;
  color: #ffc107;
}

.menu-about .grid-2 .myprofile .point p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}

.about-button {
  background-color: #ffc107;
  color: white;
  padding: 10px 20px;
  margin-top: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  letter-spacing: 2px;
  transition: 0.3s ease, padding-right 0.3s ease;
}

.button-pict a {
  text-decoration: none;
  color: #ffffff;
}

.about-button .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -45px;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.about-button:hover {
  padding-right: 55px;
}

.about-button:hover .arrow {
  right: 5px;
  opacity: 1;
}

.about-button .arrow img {
  height: 33px;
  width: 33x;
}

.menu-about .button-pict {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.menu-about img.fiiluthfiii {
  height: 40px;
  width: 160px;
  margin-top: 1.5rem;
}

/* END ABOUT */

/* START TOOLS */
.iklan-about img.yellow {
  margin-bottom: 0;
}

/* Hapus margin besar, dihandle .container */
.menu-tools {
  margin-left: 0;
  margin-right: 0;
}

.menu-tools .p {
  margin-top: 0;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
}

.menu-tools .text1 {
  font-size: 38px;
  font-weight: 500;
  color: #ffc107;
  font-style: italic;
  text-align: center;
}

.menu-tools .text2 {
  font-size: 40px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}

/* Grid Tools Responsif */
.menu-tools .grid-6 {
  display: flex;
  flex-wrap: wrap; /* Izinkan wrapping */
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-tools .grid-6 .onegrid {
  /* Tentukan basis ukuran agar rapi saat wrap */
  flex-basis: 100px;
  flex-grow: 1;
  max-width: 120px;
}

.menu-tools .grid-6 .border {
  background-color: #dddad0;
  border-radius: 50px;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.menu-tools .grid-6 .onegrid .icon {
  text-align: center;
}

.menu-tools .grid-6 .onegrid img {
  margin-top: 20px;
  height: 70px;
  width: 70px;
}

.menu-tools .grid-6 .onegrid h2 {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
}

.menu-tools .grid-6 .onegrid p {
  font-size: 16px;
  text-align: center;
  padding: 1rem;
}

/* END TOOLS */

/* START PROJECT */

/* Hapus margin besar, dihandle .container */
.menu-project {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.menu-project p {
  font-size: 28px;
}

.menu-project h1 {
  font-size: 40px;
  font-weight: 600;
}

.menu-project h1 span {
  font-style: italic;
  color: #3e5f44;
}

.menu-project .button-project {
  display: flex;
  justify-content: end;
}

.project-button {
  background-color: #ffc107;
  color: white;
  padding: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  letter-spacing: 2px;
  transition: 0.3s ease, padding-right 0.3s ease;
}

.project-button a {
  text-decoration: none;
  color: #ffffff;
}

.project-button .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -45px;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.project-button:hover {
  padding-right: 55px;
}

.project-button:hover .arrow {
  right: 5px;
  opacity: 1;
}

.project-button .arrow img {
  height: 33px;
  width: 33x;
}

/* Grid Project Responsif */
.menu-project .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.menu-project .grid-3 .grid-one {
  background-color: #dddad0;
  border-radius: 20px;
  width: 100%; /* Ubah dari 340px */
  max-width: 340px; /* Batasi lebar max */
  margin: 0 auto; /* Center di mobile */
}

.menu-project .grid-3 .grid-one .img-one {
  text-align: center;
  margin-top: 20px;
  padding: 0 15px; /* Beri padding agar gambar tidak menempel */
}

.menu-project .grid-3 .grid-one img {
  width: 100%; /* Ubah dari 309px */
  height: auto; /* Jaga rasio aspek */
  border-radius: 20px;
}

.menu-project .grid-3 .grid-one .tags {
  display: flex;
  gap: 10px;
  margin-left: 25px;
  flex-wrap: wrap;
}

.menu-project .grid-3 .grid-one .tags p {
  font-size: 13px;
  background-color: #ffc107;
  border-radius: 20px;
  padding: 5px 10px;
}

.menu-project .grid-3 .grid-one .text {
  margin: 20px 28px;
}

/* END PROJECT */

/* START BLOGS */

.iklan-blogs img.yellow {
  margin-top: 0;
  margin-bottom: 0;
}

#blogs {
  background-color: #3e5f44;
}

/* Hapus margin besar, dihandle .container */
.menu-blogs {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
}

.menu-blogs p.judul {
  font-size: 25px;
  text-align: center;
  font-weight: 500;
  padding-top: 0; /* Dihandle .container */
  color: #ffc107;
}

.menu-blogs h1 {
  text-align: center;
  font-size: 40px;
  color: #ffffff;
  font-weight: 600;
}

/* Grid Blog Responsif */
.menu-blogs .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-blogs .grid-4 .gridone {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%; /* Ubah dari 280px */
  max-width: 280px;
  height: 80px;
  display: flex;
  cursor: pointer;
  gap: 15px;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

.menu-blogs .grid-4 .gridone:hover {
  background-color: #ffc107;
}

.menu-blogs .grid-4 .gridone img {
  width: 50px;
  height: 50px;
  margin: 0 10px;
}

.menu-blogs .grid-4 .gridone h4 {
  font-size: 17px;
}

.menu-blogs .grid-4 .gridone p {
  font-size: 13px;
}

.menu-blogs .main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-blogs .main-grid .gridone {
  background-color: #ffffff;
  border-radius: 6px;
  width: 100%; /* Ubah dari 280px */
  max-width: 280px;
  height: auto; /* Ubah dari 320px */
  align-items: center;
  margin: 0 auto;
  padding-bottom: 15px; /* Beri padding bawah */
}

.menu-blogs .main-grid .pict1 {
  border-radius: 6px;
  width: 100%;
  height: auto;
}

.menu-blogs .main-grid .star {
  margin-left: 15px;
}

.menu-blogs .main-grid p {
  font-size: 17px;
  font-weight: 700;
  margin: 0 15px;
}

.menu-blogs .main-grid .profil {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: center;
}

.menu-blogs .main-grid .profil .icon {
  display: flex;
  text-align: center;
}

.menu-blogs .main-grid .profil .icon img {
  width: 30px;
  height: 30px;
  margin: 0 15px;
}

.menu-blogs .main-grid .profil .icon p {
  font-size: 15px;
  font-weight: 600;
  margin-left: -5px;
}

.menu-blogs .main-grid .profil .harga p {
  font-size: 20px;
  color: red;
  font-weight: 700;
}
/* END BLOGS */

/* START CONTACT */

#contact {
  background-color: #1e1e1e;
  padding-bottom: 3rem;
}

/* Hapus margin besar, dihandle .container */
.menu-contact {
  margin-right: 0;
}

/* Grid Contact Responsif */
.menu-contact .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.menu-contact .grid-2 .box {
  margin-top: 0; /* Dihandle .container */
  background-color: #ffffff;
  border-radius: 20px;
  margin-left: 0; /* Hapus margin */
  width: 100%; /* Ubah dari 500px */
  max-width: 500px;
  height: auto; /* Ubah dari 400px */
  padding: 30px 40px 50px 40px; /* Atur padding internal */
}

.menu-contact .grid-2 .box h3 {
  padding-top: 0;
  margin-left: 0;
  font-size: 28px;
  color: #02a744;
}

.menu-contact .grid-2 form {
  margin: 10px 0;
}

.menu-contact .grid-2 form h4 {
  color: #02a744;
  padding-top: 10px;
}

input {
  height: 35px;
}

input,
textarea {
  width: 100%;
  border: 3px solid #02a744;
  resize: none;
  padding: 0 5px;
  font-weight: 500;
  border-radius: 5px; /* Tambahkan border-radius */
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #807d7d;
}

form button {
  background-color: #02a744;
  border-radius: 30px;
  padding: 7px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  /* Hapus position absolute agar responsif */
  position: static;
  display: block;
  margin: 15px auto 0 auto;
  width: 100%;
  max-width: 200px; /* Batasi lebar tombol */
  transition: all 0.3s ease-in-out;
}

form button:hover {
  background-color: #3e5f44;
}

.menu-contact .form .box .sosial {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap; /* Izinkan wrap */
}

.menu-contact .form .box .sosial h4 {
  color: #ffc107;
  font-size: 20px;
  font-weight: 700;
}

.menu-contact .form .box .sosial .bulat {
  display: flex;
  gap: 5px;
}

.menu-contact .form .box .sosial .bulat img {
  width: 40px;
  height: 40px;
}

.menu-contact .grid-2 .getin {
  margin-top: 0; /* Dihandle .container */
}

.menu-contact .grid-2 .getin h1 {
  color: #ffffff;
  font-size: 38px;
}

.menu-contact .grid-2 .getin h1 span {
  color: #ffc107;
}

.menu-contact .grid-2 .getin p {
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}

.menu-contact .grid-2 .getin .icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15px;
  gap: 1rem;
}

.menu-contact .grid-2 .getin .media {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.menu-contact .grid-2 .getin .media img {
  width: 55px;
  height: 55px;
}

.menu-contact .grid-2 .getin .media .text {
  font-size: 20px;
  font-weight: 700;
}

.menu-contact .grid-2 .getin .media .num {
  font-size: 15px;
}

.menu-contact .grid-2 .getin .hijau {
  background-color: #02a744;
  border-radius: 30px;
  width: 100%; /* Ubah dari 550px */
  max-width: 550px;
  margin-top: 40px;
  padding: 30px 40px;
}

.menu-contact .grid-2 .getin .hijau h1 {
  padding: 0;
  color: #ffffff;
  font-size: 40px;
}

.menu-contact .grid-2 .getin .hijau h1 span {
  color: #ffc107;
  font-style: italic;
}

.menu-contact .grid-2 .getin .hijau p {
  padding: 0;
  padding-top: 10px;
  color: #ffffff;
  font-size: 19px;
}

/* END CONTACT */

/* Footer */
footer {
  background-color: #02a744;
  color: white;
  text-align: center;
  padding: 15px;
}

/* =================================== */
/* === MEDIA QUERIES (RESPONSIVE) === */
/* =================================== */

/* --- Tablet Responsive (iPad) --- */
@media (max-width: 1024px) {
  .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar {
    width: 95%;
    padding: 15px 20px;
    margin: 1rem auto;
  }

  /* Sembunyikan menu absolute, biarkan flex biasa */
  .navbar .menu-list {
    position: static;
    transform: none;
    gap: 1.5rem;
  }

  .menu-container {
    gap: 1.5rem;
  }

  /* Services Grid */
  .menu-services .services .grid-3 {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 1rem;
  }

  /* Project Grid */
  .menu-project .grid-3 {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  }

  /* Blogs Grid */
  .menu-blogs .grid-4,
  .menu-blogs .main-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  }

  /* Contact Grid */
  .menu-contact .grid-2 {
    grid-template-columns: 1fr; /* 1 kolom */
    gap: 2rem;
  }
  .menu-contact .grid-2 .box {
    margin: 0 auto; /* Center form box */
  }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  body {
    padding-top: 100px; /* Sesuaikan padding untuk navbar mobile */
  }

  h1 {
    font-size: 32px !important;
  }

  .container {
    width: 90%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  /* Navbar Mobile */
  .navbar {
    flex-wrap: wrap;
    width: 90%;
    margin: 1rem auto;
    border-radius: 30px;
  }

  .nav-toggle {
    display: block; /* Tampilkan tombol hamburger */
  }

  /* Sembunyikan menu desktop */
  .menu-container {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 0;
    padding-top: 15px;
  }

  /* Tampilkan menu saat di-toggle */
  .menu-container.show {
    display: flex;
  }

  .navbar .menu-list {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }

  .navbar .menu-list li {
    width: 100%;
  }

  .navbar .menu-list li a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #5a8a62;
  }

  .navbar .menu-list li a:hover {
    color: #ffc107;
    border-bottom: 1px solid #5a8a62;
    background-color: #4a7250;
  }

  .navbar .menu-list li:last-child a {
    border-bottom: none;
  }

  .contact-btn-container {
    width: 100%;
    padding: 1.5rem 0 0.5rem 0;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Home Section */
  .menu-home {
    grid-template-columns: 1fr; /* 1 kolom */
    text-align: center;
  }
  .menu-home .menu-name .button {
    justify-content: center; /* Center tombol */
  }
  .menu-pict {
    grid-row: 1; /* Pindahkan gambar ke atas teks */
    margin-bottom: 2rem;
  }
  .menu-home .menu-pict .photo {
    max-width: 90%;
  }
  .menu-home .menu-pict .background {
    max-width: 80%;
  }

  /* Services Grid */
  .menu-services .services .grid-3 {
    grid-template-columns: 1fr; /* 1 kolom */
  }

  /* About Grid */
  .menu-about .grid-2 {
    grid-template-columns: 1fr; /* 1 kolom */
    text-align: center;
  }
  .menu-about .grid-2 .mypicture img {
    margin: 0 auto 2rem auto;
    width: 80%;
    max-width: 300px;
  }
  .menu-about .button-pict {
    flex-direction: column;
    align-items: center;
  }
  .menu-about .grid-2 .myprofile .point {
    justify-content: center;
  }

  /* Tools Grid */
  .menu-tools .grid-6 {
    gap: 1rem;
  }
  .menu-tools .grid-6 .onegrid {
    flex-basis: 80px; /* Perkecil basis */
    max-width: 100px;
  }
  .menu-tools .grid-6 .border {
    width: 80px;
  }
  .menu-tools .grid-6 .onegrid img {
    height: 50px;
    width: 50px;
  }

  /* Project Grid */
  .menu-project .grid-3 {
    grid-template-columns: 1fr; /* 1 kolom */
  }
  .menu-project .button-project {
    justify-content: center;
  }

  /* Blogs Grid */
  .menu-blogs .grid-4,
  .menu-blogs .main-grid {
    grid-template-columns: 1fr; /* 1 kolom */
  }

  /* Contact Section */
  .menu-contact .grid-2 .getin .icon {
    grid-template-columns: 1fr; /* 1 kolom */
  }
  .menu-contact .grid-2 .getin .media {
    gap: 15px;
  }
}
