/* --- GLOBAL STYLES --- */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }
  
  body {
    background-color: #0b0f19;
    color: #f3f4f6;
    line-height: 1.6;
    scroll-behavior: smooth;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* --- NAVBAR --- */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
  }

  .nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
  }

  .nav-logo span {
    color: #00ffcc;
  }

  .nav-links {
    display: flex;
    gap: 25px;
  }

  .nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.3s ease;
  }

  .nav-item:hover {
    color: #00ffcc;
  }

  /* --- HERO HEADER --- */
  .hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135px, #0f172a 0%, #1e1b4b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
  }

  /* Efek hiasan cyber neon di background hero */
  .hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #00ffcc;
    filter: blur(150px);
    opacity: 0.15;
    top: 20%;
    left: 20%;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #93c5fd, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-content p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
  }

  /* --- MAIN CONTENT CONTAINER --- */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e293b;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #00ffcc;
  }

  /* --- PRODUCTS GRID (Ganti Dari Projects) --- */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.1);
  }

  .card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 255, 204, 0.2);
    border: 1px solid #00ffcc;
    color: #00ffcc;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(5px);
  }

  .card-img-wrapper {
    width: 100%;
    height: 200px;
    background: #1f2937; /* Placeholder warna sebelum gambar loading */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .card:hover img {
    transform: scale(1.08);
  }

  /* --- ABOUT SECTION --- */
  .about-text {
    color: #9ca3af;
    font-size: 1.05rem;
    max-width: 800px;
    margin-bottom: 40px;
  }

  .team-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: border-color 0.3s ease;
  }

  .team-card:hover {
    border-color: #3b82f6;
  }

  .team-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #1f2937;
  }

  .team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .team-role {
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
  }

  .team-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 20px;
  }

  /* --- BUTTONS --- */
  .btn {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    background: #1f2937;
    color: #fff;
    border: 1px solid #374151;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
  }

  .btn:hover {
    background: #2563eb;
    border-color: #2563eb;
  }

  .btn-primary {
    background: #00ffcc;
    color: #0b0f19;
    font-weight: 600;
    border: none;
    padding: 12px;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .btn-primary:hover {
    background: #00ccaa;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
  }

  /* --- CONTACT FORM --- */
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  @media (min-width: 768px) {
    .contact-wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-input {
    width: 100%;
    padding: 12px 16px;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-input:focus {
    outline: none;
    border-color: #00ffcc;
    box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.15);
  }

  .map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1f2937;
    height: 320px;
  }

  .map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Membuat peta bernuansa dark tech mode */
    /* filter: grayscale(1) invert(0.9) contrast(1.2);  */
  }

  /* --- FOOTER --- */
  footer {
    text-align: center;
    padding: 30px;
    background: #070a10;
    border-top: 1px solid #1e293b;
    color: #6b7280;
    font-size: 0.9rem;
  }

  footer a {
    color: #00ffcc;
  }

  /* --- RESPONSIVE ACCENT --- */
  @media (max-width: 600px) {
    .nav-links {
      display: none; /* Menyembunyikan menu pada layar kecil sesuai template lama */
    }
    .hero-content h1 {
      font-size: 2.3rem;
    }
  }

  .attachment-full size-full wp-image-817 {
    size: 1200px;
  }