*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#07111f;
  font-family:Arial;
  color:white;
  overflow-x:hidden;
}

#particles-js{
  position:fixed;
  width:100%;
  height:100%;
  z-index:-1;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 8%;
  backdrop-filter:blur(15px);
  position:sticky;
  top:0;
  z-index:999;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#00ffb3;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  transition:.3s;
}

nav a:hover{
  color:#00ffb3;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:100px 8%;
  gap:50px;
}

.hero-text{
  flex:1;
}

.badge{
  background:#00ffb322;
  color:#00ffb3;
  padding:10px 20px;
  border-radius:30px;
  display:inline-block;
  margin-bottom:25px;
}

.hero h1{
  font-size:65px;
  line-height:1.2;
}

.hero p{
  margin-top:20px;
  font-size:18px;
  color:#b8c3d1;
  line-height:1.7;
}

.buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
}

.btn{
  padding:15px 35px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
}

.primary{
  background:#00ffb3;
  color:black;
}

.secondary{
  border:1px solid #ffffff33;
  color:white;
}

.hero-image{
  flex:1;
}

.hero-image img{
  width:100%;
  border-radius:30px;
  animation:float 4s ease-in-out infinite;
}

@keyframes float{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-20px);
  }

  100%{
    transform:translateY(0);
  }

}

.services{
  padding:100px 8%;
  display:flex;
  gap:30px;
}

.card{
  background:#101a2d;
  padding:40px;
  border-radius:25px;
  flex:1;
  transition:.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.page{
  padding:120px 8%;
}

.page h1{
  font-size:55px;
  margin-bottom:20px;
}

.page p{
  color:#b8c3d1;
  line-height:1.7;
}

.price-box{
  display:flex;
  gap:30px;
  margin-top:40px;
}

.price-card{
  flex:1;
  background:#101a2d;
  padding:40px;
  border-radius:20px;
}

.price-card ul{
  margin-top:20px;
  padding-left:20px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:500px;
}

input,
textarea{
  padding:18px;
  border:none;
  border-radius:12px;
  background:#101a2d;
  color:white;
}

button{
  padding:18px;
  border:none;
  border-radius:12px;
  background:#00ffb3;
  font-weight:bold;
  cursor:pointer;
}

footer{
  text-align:center;
  padding:30px;
  border-top:1px solid #ffffff11;
}

@media(max-width:900px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero h1{
    font-size:42px;
  }

  .buttons{
    justify-content:center;
  }

  .services{
    flex-direction:column;
  }

  .price-box{
    flex-direction:column;
  }

}


.card h3{
  font-size:29px !important;
  line-height:1.3 !important;
  margin-bottom:20px !important;
  font-weight:bold;
}

.card p{
  font-size:16px !important;
  line-height:1.4 !important;
  color:#d7e0ee !important;
  text-align:left !important;
}

.card ul{
  margin-top:20px !important;
  padding-left:5px !important;
}

.card ul li{
  margin-bottom:12px !important;
  line-height:1.7 !important;
  font-size:16px !important;
}

/* JARAK ISI DALAM KOTAK */

.card{
  padding:45px !important;
}

.bottom-order{
  width:100%;

  display:flex;

  justify-content:center;

  margin-top:35px;
}

.bottom-order a{

  background:#7cff9b;

  color:black;

  text-decoration:none;

  font-weight:bold;

  padding:
  16px 35px;

  border-radius:50px;

  font-size:17px;

  transition:.3s;

  box-shadow:
  0 0 20px #7cff9b55;
}

.bottom-order a:hover{

  transform:
  translateY(-5px);

  box-shadow:
  0 0 30px #7cff9b88;
}

.price-card li{
  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:20px;

  font-size:17px;

  margin-bottom:2px;

  line-height:2;
}

.price-card li span{
  color:#f1f8f2;

  font-weight:bold;
}

.table-box{

  width:100%;

  overflow-x:auto;

  margin-top:50px;

  border-radius:20px;

  border:1px solid #ffffff15;

  overflow:hidden;

  box-shadow:
  0 0 25px #00000033;
}


table{

  width:100%;

  border-collapse:collapse;

  background:#111a2d;
}


th{

  background:#1c2b49;

  color:#7cff9b;

  padding:22px;

  text-align:left;

  font-size:18px;

  border:
  1px solid #ffffff15;
}



td{

  padding:22px;

  border:
  1px solid #ffffff15;

  color:#e4ebf5;

  line-height:1.9;

  font-size:16px;

  vertical-align:top;
}


tr:hover{

  background:#18243d;
}


td:first-child{

  font-weight:bold;

  color:white;

  width:220px;
}



@media(max-width:700px){

  th,
  td{

    padding:15px;

    font-size:14px;
  }

}


.contact-section{

  width:100%;

  display:flex;

  justify-content:center;

  padding:
  120px 8%;
}

.contact-box{

  width:100%;

  max-width:750px;

  background:
  linear-gradient(
    180deg,
    #13203a,
    #0c1526
  );

  padding:60px;

  border-radius:35px;

  border:
  1px solid #ffffff10;

  box-shadow:
  0 0 40px #00000033;

  position:relative;

  overflow:hidden;
}

.contact-box::before{

  content:"";

  position:absolute;

  width:250px;
  height:250px;

  background:#7cff9b10;

  border-radius:50%;

  top:-100px;
  right:-100px;
}


.contact-badge{

  display:inline-block;

  background:#7cff9b22;

  color:#7cff9b;

  padding:
  12px 24px;

  border-radius:50px;

  font-size:15px;

  margin-bottom:25px;
}

.contact-box h1{

  font-size:72px;

  line-height:1.1;

  margin-bottom:25px;
}


.contact-desc{

  color:#dbe4f0;

  line-height:1.9;

  font-size:18px;

  margin-bottom:40px;
}

.form{

  display:flex;

  flex-direction:column;

  gap:25px;
}

.form input,
.form textarea{

  width:100%;

  background:#1a2741;

  border:none;

  border-radius:18px;

  padding:22px;

  color:white;

  font-size:17px;

  outline:none;
}

.form textarea{

  height:150px;

  resize:none;
}

.form button{

  background:#7cff9b;

  color:black;

  border:none;

  border-radius:18px;

  padding:22px;

  font-size:22px;

  font-weight:bold;

  cursor:pointer;

  transition:.3s;

  box-shadow:
  0 0 25px #7cff9b55;
}

.form button:hover{

  transform:
  translateY(-5px);

  box-shadow:
  0 0 35px #7cff9b99;
}

.contact-info{

  display:flex;

  gap:15px;

  flex-wrap:wrap;

  margin-top:35px;
}

.info-card{

  background:#1a2741;

  padding:
  15px 20px;

  border-radius:15px;

  color:#e6eef8;

  font-size:15px;
}

@media(max-width:700px){

  .contact-box{

    padding:35px;
  }

  .contact-box h1{

    font-size:45px;
  }

  .contact-desc{

    font-size:16px;
  }

}


.btn-wa{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(45deg,#25D366,#00ff88);
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(37,211,102,0.5);
}

.btn-wa:hover{
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(37,211,102,0.8);
}

.btn-center{
    text-align: center;
    margin-top: 25px;
}

.btn-center{
    text-align: center;
    margin-top: 25px;
}

.btn-order{
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(45deg,#14dc6b,#0cd70f);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 18px rgba(109,255,115,0.45);
    transition: all 0.2s ease;
}

.btn-order:hover{
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(109,255,115,0.7);
}

.btn-order:active{
    transform: scale(0.93);
    box-shadow: 0 0 12px rgba(109,255,115,0.35);
}

.menu-toggle{
  display:none;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:30px;
  height:4px;
  background:#7cff9b;
  margin:6px 0;
  border-radius:10px;
}

@media(max-width:900px){

  .menu-toggle{
    display:block;
  }

  nav{
    display:none;
  }

  nav.active{
    display:flex;
    flex-direction:column;

    position:absolute;
    top:90px;
    right:20px;

    background:#111a2d;

    padding:20px;

    border-radius:20px;

    gap:15px;
  }

}

h11{
  color: #7cff9b;
}

h12{
  color: #7cff9b;
    font-size:18px;
    font-weight: bold;
    line-height:1.8
  
}