* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* WRAPPER */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Styling Container Logo */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px; /* Atur tinggi logo sesuai selera */
  width: auto; /* Biarkan lebar mengikuti proporsi gambar */
  transition: 0.3s;
}

/* Navbar Flexbox Adjustment */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Hover effect pada logo */
.logo-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #c5a059;
}

.btn-nav {
  background: #c5a059;
  padding: 10px 16px;
  border-radius: 6px;
  color: rgb(255, 255, 255) !important;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fffdfd;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #c5a059;
  color: white;
}

.hero h1 {
  margin-bottom: 10px;
}

.filter-wrapper {
  background: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
}

.filter-wrapper::-webkit-scrollbar {
  display: none;
}

.btn-filter {
  padding: 8px 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-filter.active {
  background: #c5a059;
  color: #fff;
  border-color: #c5a059;
}

.container {
  padding: 30px 5%;
  max-width: 1200px;
  margin: auto;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-info {
  padding: 15px;
  text-align: center;
}
.tag {
  font-size: 11px;
  color: #3498db;
  font-weight: bold;
  text-transform: uppercase;
}
.card-info h3 {
  font-size: 1.1rem;
  margin-top: 5px;
  color: #2c3e50;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }
  .nav-menu a {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }

  .produk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .filter-wrapper {
    justify-content: flex-start;
  }

  .card img {
    height: 150px;
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.konsultasi {
  background: #c5a059;
  padding: 100px 10%;
  color: white;
}

.konsultasi-container {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* KIRI */
.konsultasi-info {
  flex: 1;
}

.konsultasi-info h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.konsultasi-info p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.info-item {
  margin-top: 15px;
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.konsultasi-form {
  flex: 1;
  background: #f3f4f6;
  padding: 40px;
  border-radius: 20px;
  color: #333;
}

.konsultasi-form label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}

.konsultasi-form input,
.konsultasi-form textarea {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.konsultasi-form button {
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #c5a059;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.konsultasi-form button:hover {
  background: #1c4fd8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .konsultasi-info h1 {
    font-size: 36px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #f5f7fb;
  padding: 60px 20px;
}

/* GRID DESKTOP */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* TEXT */
.footer-col h2 {
  margin-bottom: 15px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  color: #555;
  line-height: 1.6;
}

/* MENU */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #2563eb;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* MAP RESPONSIVE */
.map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 14px;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .footer {
    padding: 40px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .map iframe {
    height: 200px;
  }
}

.floating-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/* warna brand */
.fb {
  background: #1877f2;
}
.ig {
  background: #e1306c;
}
.wa {
  background: #25d366;
}
