/* === Sakti333 - Extreme Shape Redesign (Tanpa ubah warna) === */

/* Full card redesign */
.card {
  border-radius: 28px !important;
  padding: 25px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: none !important;
  transition: all 0.4s ease;
  transform: scale(0.98);
}
.card:hover {
  transform: scale(1.01) translateY(-8px);
}

/* Navbar bulat dan transparan */
.navbar {
  height: 80px;
  border-radius: 0 0 30px 30px;
  padding: 10px 30px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Button pill with depth */
.btn {
  border-radius: 999px !important;
  padding: 12px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Inputs like iOS style */
input, select, textarea {
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Footer dengan wave dan elevation */
.footercontentdesktop {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 30px 20px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
}

/* Headings customized */
h1, h2, h3, h4, h5 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

/* Card transition with rotate subtle */
.card:hover {
  rotate: 0.3deg;
}

/* Bottom nav to floating pill menu (for mobile) */
@media (max-width: 768px) {
  .footercontentdesktop {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 30px;
  }
}