/* Font dan Reset */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0f0f0f;
    color: #f1f1f1;
  }
  
  h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00ffcc;
  }
  
  .logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }

  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #111;
    box-shadow: 0 2px 10px #0ff3;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #00ffcc;
  }

  .nav-links li a {
    position: relative;
    transition: color 0.3s;
    width: 100%;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #00ffcc;
    transition: 0.3s;
  }


  
  /* Hero Section */
  .hero {
    background: linear-gradient(120deg, #1e1e1e, #111);
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00ffcc;
  }
  
  .hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  
  .btn-glow {
    animation: glowPulse 2s infinite;
    padding: 12px 30px;
    background: #00ffcc;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 15px #00ffcc;
    transition: background 0.3s, transform 0.2s;
  }
  
  .btn-glow:hover {
    background: #00e6b8;
    transform: scale(1.05);
  }
  
  /* Features Section */
  .features {
    padding: 60px 20px;
    background: #151515;
    text-align: center;
  }
  
  .features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #00ffcc;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .feature-box {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #00ffcc33;
    transition: transform 0.3s;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #00ffcc55;
  }
  
  /* Footer */
  footer {
    background: #111;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
  }
  
  .page-content {
    padding: 60px 20px;
    background: #121212;
    color: #f1f1f1;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
  }
  
  .section-title h1 {
    font-size: 36px;
    color: #00ffcc;
  }
  
  .section-title p {
    color: #ccc;
    font-size: 18px;
    max-width: 700px;
    margin: 10px auto 0;
  }
  
  .nav-links a.active {
    color: #00ffcc;
    font-weight: bold;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feature-box {
    background: #1e1e1e;
    padding: 25px;
    border: 1px solid #00ffcc33;
    border-radius: 10px;
    transition: transform 0.3s;
    text-align: left;
    animation: fadeInUp 1s ease-in;
  }
  
  .feature-box h3 {
    color: #00ffcc;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .feature-box p {
    color: #ccc;
    font-size: 16px;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #00ffcc55;
  }

/* Harga / Pricing */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .pricing-card {
    background: #1c1c1c;
    border: 1px solid #00ffcc33;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    animation: fadeInUp 1s ease-in;
  }
  
  .pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #00ffcc55;
  }
  
  .pricing-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00ffcc;
    margin-bottom: 15px;
  }
  
  .pricing-card .price {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #ccc;
  }
  
  .pricing-card ul li {
    margin: 8px 0;
  }
  
  .pricing-card.featured {
    border: 2px solid #00ffcc;
    background: linear-gradient(145deg, #1f1f1f, #262626);
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .step-box {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #00ffcc33;
    transition: transform 0.3s;
    animation: fadeInUp 1s ease-in;
  }
  
  .step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #00ffcc55;
  }
  
  .step-box h2 {
    color: #00ffcc;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .step-box p {
    color: #ccc;
    font-size: 16px;
  }
  
  .step-box a {
    color: #00ffcc;
    text-decoration: underline;
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #00ffcc33;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    background: #2a2a2a;
    color: #f1f1f1;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 2px solid #00ffcc;
  }
  
  .contact-info {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #00ffcc33;
  }
  
  .contact-info h2 {
    color: #00ffcc;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .contact-info a {
    color: #00ffcc;
    text-decoration: underline;
  }
  
  .contact-info code {
    background: #2d2d2d;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
  }
 
  .about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
  }
  
  .about-text h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffcc;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  
  .about-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .about-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .about-text ul li {
    color: #ccc;
    margin-bottom: 8px;
  }
  
  .about-text a {
    color: #00ffcc;
    text-decoration: underline;
  }
  
  /* === ANIMASI === */

/* Fade-in saat halaman dibuka */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efek Glow untuk elemen penting */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  }
  50% {
    box-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc88;
  }
  100% {
    box-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  }
}
