 /* ===== 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;
}


/* ===== PACKAGES ===== */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.package-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.package-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}



/* STATS */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: right;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.stat-box h3 {
  color: #e0568f;
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 14px;
  color: #777;
}





/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .nav-links {
    gap: 14px;
  }
}

/* ===== SECTION ===== */
.courses {
  padding: 60px 20px;
  background: #f5f9fc;
  text-align: center;
}

/* ===== TABS ===== */
.course-tabs {
  margin-bottom: 40px;
}

.course-tabs button {
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid #e0568f;
  background: transparent;
  color: #e0568f;
  font-weight: 600;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.course-tabs button.active,
.course-tabs button:hover {
  background:#e0568f;
  color: white;
}

/* ===== GRID ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* ===== CARD ===== */
.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

/* ===== IMAGE ===== */
.course-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== CONTENT ===== */
.course-content {
  padding: 20px;
  text-align: left;
}

.course-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.course-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.price {
  display: block;
  font-weight: 600;
  color: #e0568f;
  margin-bottom: 15px;
}


/* ===== BAGIAN ATAS ===== */
.card-top {
  position: relative;
  background: linear-gradient(135deg, #e0568f, white);
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* Gambar utama */
.main-img {
  height: 220px;
  object-fit: contain;
  z-index: 2;
}

/* Icon bendera */
.flag {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 35px;
  z-index: 3;
}

/* ===== BAGIAN BAWAH ===== */
.card-bottom {
  padding: 20px;
}

.card-bottom h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card-bottom p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}



/* BUTTON */
.btn-detail {
  display: inline-block;
  padding: 10px 20px;
  background: #e0568f;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-detail:hover {
  background: #e0568f;
}


/* ===== FOOTER ===== */
footer {
  margin-top: auto;
  background: #fff7fb;
  padding: 18px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #ff5fa2;
  margin: 0;
}

