/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../webfonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


        /* CSS Manual Anda (Tetap Sama) */
        :root {
            --pw-navy: #000055;
            --pw-navy-light: #0a0a7a;
            --pw-gold: #FFD700;
            --pw-gray: #f3f4f6;
            --pw-text: #1f2937;
            --pw-card-shadow: 0 4px 20px rgba(0, 0, 85, 0.08);
        }
        body {
            font-family: 'Inter', sans-serif; color: var(--pw-text); background: #fff;
            overflow-x: hidden; margin: 0; padding: 0;
        }
        /* HERO */
        .hero-home { padding: 60px 0 40px; position: relative; background: radial-gradient(circle at top right, rgba(0, 0, 85, 0.05), transparent 40%); border-bottom: 1px solid #f0f0f0; }
        .hero-brand { color: var(--pw-navy); font-weight: 800; letter-spacing: -1px; }
        .hero-lead { color: #4b5563; font-size: 1.1rem; line-height: 1.6; max-width: 600px; margin: 0 auto; }
        
        /* SEARCH BOX */
        .home-search-wrapper { background: #fff; border: 2px solid #e5e7eb; border-radius: 24px; padding: 15px; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; max-width: 650px; margin: 30px auto 10px; display: flex; flex-direction: column; }
        .home-search-wrapper:focus-within { border-color: var(--pw-navy); box-shadow: 0 15px 30px -5px rgba(0, 0, 85, 0.15); }
        .search-input-area { display: flex; align-items: flex-start; width: 100%; }
        .search-textarea { border: none; width: 100%; resize: none; outline: none; font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--pw-text); min-height: 24px; max-height: 200px; overflow-y: hidden; padding: 0 10px; background: transparent; line-height: 1.5; }
        .search-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0f0f0; }
        .char-count { font-size: 0.75rem; color: #9ca3af; font-weight: 500; }
        .char-count.limit-reached { color: #dc3545; }
        .search-btn { background: var(--pw-navy); color: #fff; border-radius: 50px; padding: 8px 25px; font-weight: 600; border: none; font-size: 0.9rem; transition: 0.2s; display: flex; align-items: center; gap: 8px; }
        .search-btn:hover:not(:disabled) { background: var(--pw-navy-light); }
        .search-btn:disabled { background: #e5e7eb; color: #9ca3af; cursor: not-allowed; }
        
        /* RESULT BOX */
        #ai-result-box { max-width: 650px; margin: 20px auto 0; text-align: left; background: #f8faff; border: 1px solid #e0e7ff; border-radius: 16px; padding: 20px; display: none; animation: fadeIn 0.4s ease-in-out; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        /* MARQUEE */
        .marquee-wrapper { background: var(--pw-navy); padding: 15px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
        .marquee-item { display: inline-flex; align-items: center; color: rgba(255,255,255,0.9); margin: 0 30px; font-weight: 500; font-size: 0.9rem; text-decoration: none; }
        .marquee-item i { margin-right: 8px; color: var(--pw-gold); }
        .marquee-wrapper:hover .marquee-content { animation-play-state: paused; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* BENTO */
        .bento-section { padding: 40px 0 60px; }
        .bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 180px); gap: 20px; }
        .bento-item { border-radius: 24px; padding: 25px; position: relative; overflow: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #f0f0f0; box-shadow: var(--pw-card-shadow); background: #fff; }
        .bento-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,85,0.12); }
        .bento-ig { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, #fff 0%, #fff0f5 100%); }
        .bento-tt { grid-column: span 1; grid-row: span 2; background: linear-gradient(135deg, #fff 0%, #f0fdff 100%); }
        .bento-yt { grid-column: span 1; grid-row: span 2; background: #fff; }
        .bento-icon { font-size: 2rem; margin-bottom: 10px; }
        .bento-title { font-weight: 800; font-size: 1.2rem; color: var(--pw-navy); line-height: 1.2; }
        .bento-desc { font-size: 0.85rem; color: #6b7280; margin-top: 5px; }
        .bento-arrow { position: absolute; bottom: 20px; right: 20px; opacity: 0; transition: 0.3s; color: var(--pw-navy); }
        .bento-item:hover .bento-arrow { opacity: 1; transform: translateX(5px); }

        /* PATHWAY */
        .pathway-section { padding: 0 0 40px; }
        .pathway-card { border-radius: 20px; padding: 40px 30px; height: 100%; display: flex; align-items: center; justify-content: space-between; transition: 0.3s; border: 1px solid rgba(0,0,0,0.05); cursor: pointer; }
        .path-sosmed { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .path-sosmed:hover { border-color: var(--pw-navy); }
        .path-sosmed .icon-box { background: #eef2ff; color: var(--pw-navy); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
        .path-net { background: var(--pw-navy); color: #fff; box-shadow: 0 10px 30px rgba(0,0,85,0.2); }
        .path-net:hover { background: var(--pw-navy-light); }
        .path-net .icon-box { background: rgba(255,255,255,0.1); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
        .path-net p { color: rgba(255,255,255,0.7); }

        /* UPDATES */
        .updates-section { padding: 60px 0; background: #f8faff; }
        .update-card { background: #fff; border: none; border-radius: 16px; overflow: hidden; transition: 0.3s; height: 100%; box-shadow: 0 4px 6px rgba(0,0,0,0.02); padding: 25px; }
        .update-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
        .cat-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; display: inline-block; }
        .update-title { font-weight: 700; font-size: 1.1rem; color: var(--pw-navy); margin-bottom: 10px; line-height: 1.4; }
        .update-excerpt { font-size: 0.9rem; color: #6b7280; line-height: 1.6; }

        /* NEWSLETTER */
        .newsletter-section { padding: 80px 0; }
        .newsletter-box { background: var(--pw-navy); border-radius: 30px; padding: 50px; color: #fff; position: relative; overflow: hidden; text-align: center; }
        .newsletter-box::before { content: ''; position: absolute; top: -50px; left: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.05); border-radius: 50%; }
        .nl-input { border-radius: 50px; padding: 15px 25px; border: none; width: 100%; font-size: 1rem; }
        .nl-btn { border-radius: 50px; padding: 15px 30px; background: var(--pw-gold); color: var(--pw-navy); font-weight: 800; border: none; width: 100%; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .nl-btn:hover:not(:disabled) { background: #ffed4a; }
        .nl-btn:disabled { background: #ccc; cursor: not-allowed; }

        /* FOOTER */
        .social-connect { padding: 40px 0; border-top: 1px solid #eee; background: #fff; }
        .social-icon-btn { width: 45px; height: 45px; border-radius: 12px; background: #f3f4f6; color: var(--pw-navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: 0.3s; margin: 5px; text-decoration: none; }
        .social-icon-btn:hover { background: var(--pw-navy); color: #fff; transform: translateY(-3px); }
        .simple-footer { background: #111; color: #fff; padding: 30px 0; font-size: 0.9rem; }
        .simple-footer a { color: #ccc; text-decoration: none; }

        /* MEDIA QUERIES */
        @media (max-width: 768px) {
            .hero-home { padding: 40px 0 20px; }
            .hero-brand { font-size: 2.5rem; }
            .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; gap: 15px; }
            .bento-ig { grid-column: span 2; grid-row: auto; height: 180px; }
            .bento-tt, .bento-yt { grid-column: span 1; grid-row: auto; height: 160px; } 
            .bento-item { padding: 20px; min-height: 140px; }
            .newsletter-box { padding: 30px 20px; }
            .nl-btn { margin-top: 10px; }
            .pathway-card { margin-bottom: 15px; padding: 25px; }
        }
        
        
        /* Kelas baru: misal namanya .link-panah */
.link-panah {
  text-decoration: none;
  color: #008f68; /* Warna teks hijau gelap */
  font-weight: 700;
  position: relative;
  /* Garis bawah default agar orang tahu ini link */
  border-bottom: 3px solid rgba(0, 143, 104, 0.3); 
  transition: color 0.3s ease-in-out;
  display: inline-block; /* Supaya rapi dengan ikon */
}

/* 1. BAGIAN IKON (Memakai ::before) */
.link-panah::before {
  content: '→'; /* Bisa ganti dengan '👉' atau '🔗' */
  margin-right: 5px; /* Jarak antara ikon dan teks */
  display: inline-block;
  transition: transform 0.3s ease; /* Animasi gerak ikon */
}

/* 2. BAGIAN BACKGROUND HOVER (Memakai ::after) */
.link-panah::after {
  content: '';
  background-color: rgba(0, 143, 104, 0.2); /* Warna background saat hover (transparan) */
  position: absolute;
  left: 0;
  bottom: 0; /* Mulai dari paling bawah */
  width: 100%;
  height: 0%; /* Awalnya 0, tidak terlihat */
  z-index: -1; /* Di belakang teks */
  transition: all 0.3s ease-in-out;
}

/* EFEK SAAT MOUSE DI-HOVER */
.link-panah:hover {
  color: #004d38; /* Warna teks jadi lebih gelap saat hover */
}

.link-panah:hover::before {
  transform: translateX(5px); /* Ikon panah maju sedikit ke kanan */
}

.link-panah:hover::after {
  height: 100%; /* Background naik memenuhi teks */
}
    