/* ==============================
   GLOBAL STYLE
============================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: black;
  text-align: center;
}

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) scale(0.3);
  background: white;
  color: black;
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1000;
}
.navbar.show {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: black;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.3s;
}
.nav-link:hover,
.nav-link.active {
  background: #ccc;
}

.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 991px) {
  .navbar {
    width: 90%;
    justify-content: space-between;
  }
  .nav-links {
    gap: 15px;
  }
}

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    flex-direction: column;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-link {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
  }
  .nav-link:hover,
  .nav-link.active {
    background: #f0f0f0;
  }
}

/* ==============================
   HERO "MENGAPA"
============================== */
.Mengapa {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #e9e9e9;
  overflow: hidden;
}

.Mengapa-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-bottom: 5px solid #f0f0f0;
}

.Alasan-section {
  background-color: #f0f0f0;
  text-align: center;
  padding: 60px 20px;
}
.Alasan-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
}

/* Grid Alasan */
.alasan-grip {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.content-item {
  background-color: #eaeaea;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.content-item i {
  color: #00b894;
  font-size: 1.2rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .Mengapa-image {
    height: 250px;
  }
  .alasan-grip {
    grid-template-columns: 1fr;
  }
  .content-item {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* ==============================
   LAYANAN (GRID)
============================== */
.container-1 {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 25px;
}

.grid-1 {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.grid-1:hover {
  transform: translateY(-5px);
}
.grid-1 img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.grid-1 p {
  font-weight: 600;
  font-size: 16px;
  margin: 10px 0 15px;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-1 img {
    height: 140px;
  }
  .grid-1 p {
    font-size: 14px;
  }
}

/* ==============================
   SLIDER PROSES PEMESANAN
============================== */
.pesan-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 40px 0;
}

.proses-slider {
  position: relative;
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: #fff;
}

.proses-list {
  display: flex;
  width: 500%;
  animation: slide 20s infinite;
}

.proses-item {
  width: 20%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  height: 400px;
}

.proses-item img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.proses-item p {
  font-size: 16px;
  color: #333;
  max-width: 80%;
  line-height: 1.5;
  margin: 0;
}

/* Dots */
.proses-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.proses-dots li {
  width: 12px;
  height: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: background 0.3s;
}

@keyframes dotActive {
  0%, 20% { background: #000; }
  25%, 100% { background: rgba(0,0,0,0.3); }
}
.proses-dots li:nth-child(1) { animation: dotActive 20s infinite 0s; }
.proses-dots li:nth-child(2) { animation: dotActive 20s infinite 4s; }
.proses-dots li:nth-child(3) { animation: dotActive 20s infinite 8s; }
.proses-dots li:nth-child(4) { animation: dotActive 20s infinite 12s; }
.proses-dots li:nth-child(5) { animation: dotActive 20s infinite 16s; }

@keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(0); }
  25% { transform: translateX(-20%); }
  40% { transform: translateX(-20%); }
  45% { transform: translateX(-40%); }
  60% { transform: translateX(-40%); }
  65% { transform: translateX(-60%); }
  80% { transform: translateX(-60%); }
  85% { transform: translateX(-80%); }
  100% { transform: translateX(-80%); }
}

/* Responsive Slider */
@media (max-width: 768px) {
  .proses-item {
    height: 300px;
  }
  .proses-item img {
    width: 120px;
  }
  .proses-item p {
    font-size: 14px;
  }
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: #444;
  color: #fff;
  padding: 20px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #666;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.footer-logo img {
  height: 200px;
}
.footer-slogan {
  font-size: 25px;
  margin: 0;
}
.footer-btn {
  background: #e74c3c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-btn:hover {
  background: #c0392b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}
.footer-col h4 {
  margin-bottom: 10px;
  font-size: 16px;
}
.footer-col a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
}
.footer-col a:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ddd;
}
.contact-item i {
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #e74c3c;
}
.contact-item p {
  margin: 0;
}

/* Copyright */
.copyright {
  background: #111;
  padding: 20px 40px;
}
.copyright p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}
.copyright span {
  color: #fff;
  font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo img {
    height: 120px;
  }
  .footer-slogan {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 20px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-btn {
    margin-top: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  .copyright {
    padding: 12px 5px;
  }
  .copyright p {
    font-size: 12px;
    line-height: 1.5;
  }
  .copyright span {
    display: block;
    margin-top: 4px;
  }
}
