 /* ===== GLOBAL ===== */
    * { box-sizing: border-box; }
    body {
      margin: 0;
      overflow-x: hidden;
      font-family: "Poppins", sans-serif;
      background: #fff5fa;
      color: #e0568f;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* ===== NAVBAR ===== */
   .navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff7fb;
  box-shadow: 0 2px 8px rgba(77, 49, 49, 0.05);
  z-index: 999;
  overflow: visible;
}

.nav-container {
  max-width: 1390px;
  width: 100%;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img { width: 65px; }

.brand-text {
  font-size: 22px;
  font-weight: 600;
  color: #e0568f;
  white-space: nowrap;
}

  .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #e0568f;
  font-weight: 600;
  color: #e0568f;
  transition: 0.3s;
}
    .nav-links a:hover { color: #ff7fbf; }

    /* ===== MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
  padding: 6px 12px;
  background: #ffe3ef;
  color: #e0568f;
  z-index: 9999;
  border-radius: 20px;
}
    /* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row; /* tetap horizontal */
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .service-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 18px; }
  .logo-img { width: 50px; }
  .brand-text { font-size: 15px; }
  .menu-toggle { display: flex; }
  .menu-text { font-size: 16px; }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 14px; }

.nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: #fff7fb;
    width: 100%;
    max-width: 220px;
    padding: 10px;
    gap: 10px;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .menu-text { font-size: 16px; }
  .nav-links.active { display: flex; }

}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 70px 20px 40px;
  background: linear-gradient(
    rgba(255,157,206,0.3),
    rgba(255,255,255,0.9)
  );
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0 15px;
}

.hero p {
  font-size: 22px;
  margin: 5px 0;
}

.tagline {
  font-size: 18px;
  opacity: 0.85;
}


/* ===== FOOTER ===== */
footer {
  margin-top: auto;
  background: #fff7fb;
  padding: 18px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #ff5fa2;
  margin: 0;
}