* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* ================= HEADER ================= */
/* MAIN HEADER */
#main-header,
#header-wrapper {
  background-color: #ffffff !important;
}

.topbar {
  background: #ffffff;
  font-size: 14px;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 10px 20px;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topbar-info {
  display: flex;
  gap: 25px;
}

.topbar a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.navbar {
  background: #bfdbfe;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #2563eb;
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= HEADER ================= */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  margin-top: 0;
}

.slide img {
  height: 100vh;
  object-fit: cover;
}




.slider {
  display: flex;
  transition: transform 1s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
}

/* ================= SECTION ================= */
.section {
  padding: 80px 20px;
}

.gray {
  background: #f3f4f6;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.section-title span {
  color: #2563eb;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.card.blue {
  background: #dbeafe;
}

.circle {
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ================= FOOTER ================= */
footer {
  background: #111827;
  color: #d1d5db;
  padding: 60px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

footer input {
  padding: 10px;
  width: 100%;
  margin-top: 10px;
}

footer button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
}

footer button:hover {
  background: #1e40af;
}

footer p {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #bfdbfe;
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* ================= PRODUCTS ================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.1);
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 10px;
}

.full-description {
  display: none;
}

/* ================= TEAM ================= */
.blue {
  background: #93c5fd;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.1);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* ================= FAQ ================= */
.faq-container {
  max-width: 800px;
}

details {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,.1);
}

summary {
  font-weight: bold;
  cursor: pointer;
}

details p {
  margin-top: 10px;
}
.quality-image {
  display: flex;
  justify-content: center;   /* tengah horizontal */
  align-items: center;       /* tengah vertikal */
}

.quality-image img {
  max-width: 100%;
}
