/* ================= GLOBAL ================= */

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family:Inter,system-ui;
  background:#0f172a;
  color:#e5e7eb;
  line-height:1.7;
}

/* ================= NAVBAR ================= */

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
  position:fixed;
  width:100%;
  top:0;
  left:0;
  background:rgba(15,23,42,0.95);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#fff;
}

.logo img{height:36px}

.nav-links{
  display:flex;
  gap:25px;
}

.nav-links a{
  text-decoration:none;
  color:#cbd5e1;
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:#fff;
}

.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  height:3px;
  width:25px;
  background:#fff;
  margin:4px 0;
}

/* ================= HERO ================= */

.hero{
  padding:170px 8% 120px;
  text-align:center;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
}

/* ================= SECTION ================= */







.hero-buttons .btn-secondary:hover {
  background-color: #a81d5c;
}


.section{
  padding:100px 8%;
  max-width:1100px;
  margin:auto;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:#1e293b;
  padding:30px;
  border-radius:12px;
}


.hero-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: #0d6efd;
}

.hero-icon-small {
  font-size: 30px;
  margin: 15px 0;
  color: #198754;
}

.card {
  text-align: center;
  padding: 30px 20px;
}

.card-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d63384;
}





.hero-icon img {
  max-width: 50%;  /* maksimal setengah lebar layar */
  height: auto;
}
.card-icon  {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d63384;
}





/* ================= FOOTER ================= */






.footer{
  background:#0b1220;
  padding:60px 8% 30px;
  color:#94a3b8;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:40px;
  max-width:1100px;
  margin:auto;
}

.footer-brand h3{
  color:#fff;
  margin-bottom:10px;
}

.footer-brand p{
  max-width:300px;
  font-size:14px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links a{
  text-decoration:none;
  color:#94a3b8;
  font-size:14px;
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:13px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#111827;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    padding:14px 0;
    width:100%;
    text-align:center;
  }

  .hamburger{
    display:flex;
  }

  .footer-container{
    flex-direction:column;
  }

}
