/* =======================================
   1. BUTTONS (FRONT)
======================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }
  
  .btn-primary {
    background: #1c7a4d;
    color: #fff;
  }
  .btn-primary:hover {
    background: #155c39;
    transform: translateY(-1px);
  }
  
  .btn-outline {
    background: transparent;
    color: #003249;
    border: 1px solid #003249;
  }
  
  /* Di section cream tetap pakai warna teks gelap */
  .section.cream .btn-outline {
    color: #003249;
    border-color: #003249;
  }
  
  .btn-outline:hover {
    background: rgba(0, 0, 0, 0.04);
  }
  
  /* =======================================
     2. HERO / HEADLINE + VIDEO BACKGROUND
  ======================================= */
  
  .hero {
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
  }
  
  /* background image */
  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition:
      background-image 0.6s ease-out,
      transform 0.6s ease-out;
    z-index: -1;
  }
  
  /* overlay gelap */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 35%,
      rgba(0, 0, 0, 0.25) 75%,
      rgba(0,  0, 0, 0.1) 100%
    );
    z-index: 1;
  }
  
  /* konten hero */
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 96px;
  }
  
  .hero-headline {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 18ch;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeIn 0.8s ease-out forwards;
  }
  
  .hero-headline-main {
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.9),
      0 0 18px rgba(1, 50, 32, 0.9);
  }
  
  .hero-headline-sub {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a8ff9d;
    text-shadow:
      0 0 6px rgba(0, 0, 0, 0.8),
      0 0 10px rgba(1, 50, 32, 0.9);
  }
  
  .hero-subtitle {
    margin-top: 8px;
    font-size: 1rem;
    max-width: 32ch;
  }
  
  /* animasi muncul */
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .hero-link {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.85);
  }
  
  /* =======================================
     2.a HERO: TOGGLE / CTA BUTTON
  ======================================= */
  
  .hero-toggle {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
  
  .hero-toggle-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
  }
  .hero-toggle-link:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  .hero-toggle-link-main {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    font-weight: 600;
    opacity: 1;
  }
  .hero-toggle-link-main:hover {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
  }
  
  /* =======================================
     2.b HERO: VIDEO BACKGROUND
  ======================================= */
  
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
  }
  .hero-video-visible { opacity: 1; }
  .hero-video-hidden  { display: none; }
  
  /* =======================================
     2.c HERO BADGE (opsional)
  ======================================= */
  
  .hero-badge {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.6),
      0 0 18px rgba(28, 122, 77, 0.5);
    backdrop-filter: blur(4px);
  }
  
  .hero-badge-main {
    font-size: 20px;
    font-weight: 800;
    color: #1c7a4d;
    text-shadow:
      0 0 6px rgba(0, 0, 0, 0.9),
      0 0 8px rgba(28, 122, 77, 0.8);
  }
  
  .hero-badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-shadow:
      0 0 6px rgba(0, 0, 0, 0.9),
      0 0 10px rgba(255, 255, 255, 0.7);
  }
  
  /* =======================================
     2.d HERO: ARROWS (slider)
  ======================================= */
  
  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .hero-arrow-left  { left: 18px; }
  .hero-arrow-right { right: 18px; }
  
  .hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
  }
  
  /* =======================================
     2.e HERO: ANIMASI SLIDE
  ======================================= */
  
  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .hero-headline.slide-in-right { animation: slideInRight 0.6s ease-out forwards; }
  .hero-headline.slide-in-left  { animation: slideInLeft 0.6s ease-out forwards; }
  
  /* =======================================
     IMPACT SECTION (OUR STORY + NEWS + PUB)
  ======================================= */
  
  .impact-section-full {
    width: 100%;
    background: #003249;
    padding: 60px 0;
  }
  
  /* wrapper impact */
  .impact-section-full .impact-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1.4fr 1.6fr;
    gap: 32px 40px;
    align-items: flex-start;
  }
  
  /* Semua teks di dalam impact jadi putih (tanpa !important, pakai spesifik) */
  .impact-section-full,
  .impact-section-full h1,
  .impact-section-full h2,
  .impact-section-full h3,
  .impact-section-full h4,
  .impact-section-full p,
  .impact-section-full a,
  .impact-section-full li,
  .impact-section-full .impact-title,
  .impact-section-full .impact-story,
  .impact-section-full .impact-subheading,
  .impact-section-full .news-card h3,
  .impact-section-full .pub-title {
    color: #ffffff;
  }
  
  /* =======================================
     SECTION CARD WRAPPER (Summary & Impact)
  ======================================= */
  
  .section-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  
  .section-card > .summary-left h2,
  .section-card > .impact-left h2 {
    margin-top: 4px;
  }
  
  /* =======================================
     BESARKAN SEMUA JUDUL PENTING (tanpa important)
  ======================================= */
  
  .section h2,
  .summary-left h2,
  .summary-right-title,
  .impact-left h2,
  .impact-right h2,
  .section-heading-link,
  .where-we-work h2,
  .partners-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
  }
  
  /* =======================================
     SUMMARY / DATABASE + NTFP
  ======================================= */
  
  .summary-wrapper { max-width: 1120px; }
  
  .summary-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
  }
  
  /* Kiri/kanan */
  .summary-left { width: 100%; }
  
  .summary-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .summary-right-title {
    margin: 0 0 4px;
    color: #003249;
  }
  
  .summary-right-subtitle {
    margin: 0 0 12px;
    font-size: 12px;
    color: #6b7b6c;
  }
  
  .summary-intro {
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.9;
  }
  
  /* cards ringkasan */
  .summary-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  
  .summary-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;
  }
  
  .summary-card:hover {
    background: #035c31;
    transition: background 0.25s ease, transform 0.2s ease;
    transform: translateY(-3px);
  }
  
  .summary-card:hover .summary-label,
  .summary-card:hover .summary-number,
  .summary-card:hover .summary-unit {
    color: #ffffff;
  }
  
  .summary-text {
    flex: 1;
    min-width: 0;
  }
  
  .summary-label {
    font-size: 13px;
    color: #6b7b6c;
    margin-bottom: 6px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .summary-metric {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  
  .summary-number {
    font-size: 22px;
    font-weight: 700;
    color: #003249;
  }
  
  .summary-unit {
    font-size: 14px;
    color: #555;
  }
  
  /* Project implementation */
  .summary-project {
    margin-top: 28px;
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 20px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
  
  .summary-project.project-stats {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  .project-stats {
    width: 100%;
    background: transparent;
    border-radius: 16px;
    padding: 20px 20px 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    color: #003249;
  }
  
  .project-stats h3 { margin-bottom: 12px; }
  
  .project-note {
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 12px;
  }
  
  .project-chart {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 6px;
  }
  
  .project-row-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  .project-row-link:hover .project-bar {
    background: rgba(255, 255, 255, 0.16);
  }
  
  .project-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }
  
  .project-label {
    text-align: left;
    font-weight: 500;
  }
  
  .project-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  .project-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s ease-out;
  }
  
  .project-bar-fill.green      { background: #1c7a4d; }
  .project-bar-fill.orange     { background: #f6aa1c; }
  .project-bar-fill.orange-red { background: #df9409; }
  .project-bar-fill.red {
    background: #d90429;
    box-shadow: 0 0 8px rgba(217, 4, 41, 0.6);
  }
  
  .project-value {
    position: absolute;
    right: 10px;
    font-size: 11px;
    white-space: nowrap;
    color: #fafafa;
    -webkit-text-fill-color: #020201;
  }
  
  .project-empty {
    font-size: 12px;
    opacity: 0.85;
  }
  
  .project-stats-footer {
    font-size: 11px;
    opacity: 0.7;
  }
  
  /* =======================================
     4. NTFP SLIDER
  ======================================= */
  
  .ntfp-slider {
    position: relative;
    width: 100%;
    background: transparent;
  }
  
  .ntfp-slide { display: none; }
  .ntfp-slide-active { display: block; }
  
  .ntfp-card {
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: none;
    color: #003249;
  }
  
  .ntfp-card-with-image {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .ntfp-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .ntfp-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7b6c;
    margin-bottom: 4px;
  }
  
  .ntfp-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  .ntfp-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #1c7a4d;
    font-weight: 600;
    text-decoration: none;
  }
  .ntfp-link:hover { text-decoration: underline; }
  
  /* gambar NTFP (satu definisi saja, konsisten) */
  .ntfp-image {
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    background: #dfe9df;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .ntfp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  
  .ntfp-card:hover .ntfp-image img {
    transform: scale(1.06);
  }
  
  /* arrow */
  .ntfp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
  }
  
  .ntfp-arrow-left  { left: -18px; }
  .ntfp-arrow-right { right: -18px; }
  
  .ntfp-arrow:hover {
    background: rgba(255, 255, 255, 0.55);
    color: #003249;
    border-color: white;
    transform: translateY(-50%) scale(1.15);
  }
  
  /* dots */
  .ntfp-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }
  .ntfp-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  .ntfp-dot-active { background: #1c7a4d; }
  
  /* =======================================
     5. CERITA KAMI + UPDATE TERAKHIR
  ======================================= */
  
  .impact-left h2 { margin-bottom: 16px; }
  
  .impact-card {
    background: transparent;
    border-radius: 0;
    padding: 8px 0;
    box-shadow: none;
    color: #003249;
  }
  
  .impact-image {
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 320px;
  }
  .impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .impact-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #003249;
  }
  
  .impact-story {
    font-size: 14px;
    line-height: 1.7;
    color: #003249;
    max-height: 160px;
    overflow: hidden;
    position: relative;
  }
  
  .impact-readmore {
    margin-top: 8px;
    padding: 0;
    background: none;
    border: none;
    color: #1c7a4d;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  
  .testimonial {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #ece7da;
    font-size: 13px;
    color: #003249;
  }
  
  .testimonial h3 {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #003249;
  }
  
  .testimonial p {
    font-style: italic;
    line-height: 1.6;
  }
  
  .impact-right h2 { margin-bottom: 16px; }
  
  .impact-subheading {
    margin: 24px 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #003249;
  }
  
  /* =======================================
     6. NEWS & PUBLICATIONS GRID
  ======================================= */
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  
  .news-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    box-shadow: none;
    color: #003249;
  }
  
  .news-image {
    width: 100%;
    height: 190px;
    border-radius: 6px;
    background: transparent;
    margin-bottom: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: #003249;
  }
  
  .news-link {
    font-size: 12px;
    color: #003249;
    text-decoration: underline;
  }
  
  /* pub grid lama (kalau masih dipakai di halaman lain) */
  .pub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
  }
  .pub-card {
    background: transparent;
    border: none;
    padding: 0;
    color: #003249;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 290px;
  }
  .pub-image {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: #e7e7e7;
  }
  .pub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pub-title {
    font-size: 14px;
    font-weight: 600;
    color: #003249;
    min-height: 40px;
    display: flex;
    align-items: flex-start;
  }
  .pub-more-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
  }
  .pub-more-link:hover { text-decoration: underline; }
  
  /* =======================================
     7. WHERE WE WORK + PARTNER ORGANIZATIONS
  ======================================= */
  
  .bottom-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    margin-top: 10px;
  }
  
  .partners h3,
  .project-stats h3 {
    margin-bottom: 12px;
  }
  
  .where-we-work h2 { margin-bottom: 16px; }
  .where-we-work p  { margin: 16px 0; }
  
  /* wrapper peta */
  .map-placeholder{
    width: 100%;
    height: clamp(280px, 35vw, 420px);
    margin-bottom: 16px;
    background: #fdfdfd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
  }
  
  /* kontainer leaflet */
  #where-map{
    width: 100%;
    height: 100%;
    display: block;
    background: #e9e9e9;
  }
  
  /* info panel */
  .where-info-panel {
    margin-top: 12px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    font-size: 13px;
    color: #003249;
  }
  
  .where-info-panel h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
  }
  
  .where-info-panel p {
    margin: 4px 0 6px;
    font-size: 13px;
  }
  
  /* Partner strip */
  .section.partners-bottom {
    background: #ffffff;
    padding: 60px 0 70px;
    color: #003249;
  }
  
  .partners-title {
    margin: 0 0 40px;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
  }
  
  .partners-strip {
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    will-change: transform;
  }
  
  .partners-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: partnersMarquee 40s linear infinite;
  }
  
  .partner-item { flex: 0 0 auto; }
  
  @keyframes partnersMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
  }
  
  .partners-strip:hover .partners-track,
  .partners-strip:active .partners-track {
    animation-play-state: paused;
  }
  
  .partner-item img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease, filter 0.2s ease;
  }
  .partner-item img:hover { transform: scale(1.05); }
  
  /* =======================================
     8. PILLARS (re-use)
  ======================================= */
  
  .pillars-wrapper {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 40px;
    color: #003249;
  }
  
  .pillars h2 { margin-bottom: 16px; }
  
  .pillars-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .pillar-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    color: #003249;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease,
      background 0.2s ease;
    cursor: pointer;
  }
  
  .pillar-logo img {
    width: 90px;
    height: auto;
    display: block;
  }
  
  .pillar-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
  }
  
  .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.25);
    background: #c1e204;
  }
  
  /* =======================================
     9. NAV QUESTION < HOME > ANSWER
  ======================================= */
  
  .qa-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  
  .qa-link {
    text-decoration: none;
    color: #003249;
    opacity: 0.4;
    font-weight: 500;
  }
  
  .qa-link-active {
    opacity: 1;
    font-weight: 700;
  }
  
  .qa-link:hover { opacity: 0.9; }
  
  .qa-separator {
    color: #003249;
    opacity: 0.5;
  }
  
  /* =======================================
     10. FIX: SUMMARY CARD LINK LOOKS NORMAL
     (tanpa important)
  ======================================= */
  
  .summary-cards a.summary-card,
  .summary-cards a.summary-card:link,
  .summary-cards a.summary-card:visited,
  .summary-cards a.summary-card:hover,
  .summary-cards a.summary-card:active,
  .summary-cards a.summary-card:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
  }
  
  /* =======================================
     FIX: WARNA TOMBOL PRATINJAU
     (tanpa important)
  ======================================= */
  
  .btn-preview {
    background: #1c7a4d;
    color: #74c41a;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .btn-preview:hover {
    background: #155c39;
    color: #ffffff;
  }
  
  /* =======================================
     HOME PUBLICATIONS GRID (impact section)
     (tanpa important)
  ======================================= */
  
  .home-pub-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
  }
  @media (min-width: 640px) {
    .home-pub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  
  /* card glass */
  .home-pub-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .home-pub-image { overflow: hidden; border-radius: 10px; }
  .home-pub-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform .45s ease;
  }
  
  .home-pub-badge {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e5f4ef;
    color: #00473f;
    margin-top: 2px;
    width: max-content;
  }
  
  .home-pub-title {
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
    color: #111827;
    line-height: 1.35;
    min-height: 36px;
  }
  
  .home-pub-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
  }
  
  .home-btn-preview,
  .home-btn-download {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    border: none;
  }
  
  .home-btn-preview { background: #e5f4ef; color: #00473f; }
  .home-btn-download { background: #003249; color: #e8f5f0; }
  
  .home-pub-info {
    font-size: 11px;
    color: #4b5563;
    text-align: right;
    margin-top: 2px;
  }
  
  /* impact section: pastikan card & teks kontras (tanpa important) */
  .impact-section-full .home-pub-card { color: #ffffff; }
  .impact-section-full .home-pub-title { color: #ffffff; }
  .impact-section-full .home-pub-info  { color: rgba(255,255,255,.85); }
  .impact-section-full .home-pub-badge { color: #111827; background: #e5f4ef; }
  
  .impact-section-full .home-btn-preview { background: #e5f4ef; color: #003249; }
  .impact-section-full .home-btn-preview:hover { background: #d7efe7; color: #003249; }
  
  .impact-section-full .home-btn-download { background: #003249; color: #ffffff; }
  
  /* =========================================
     HOVER EFFECTS (impact/news/pub)
  ========================================= */
  
  .impact-section-full .impact-card,
  .impact-section-full .news-card,
  .impact-section-full .home-pub-card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    will-change: transform;
    transform: translateZ(0);
  }
  
  .impact-section-full .impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
  }
  
  .impact-section-full .impact-image { overflow: hidden; border-radius: 12px; }
  .impact-section-full .impact-image img {
    transition: transform .45s ease;
    will-change: transform;
    transform: scale(1);
  }
  .impact-section-full .impact-card:hover .impact-image img { transform: scale(1.06); }
  
  .impact-section-full .news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.40);
  }
  .impact-section-full .news-image { overflow: hidden; border-radius: 8px; }
  .impact-section-full .news-image img {
    transition: transform .45s ease;
    will-change: transform;
    transform: scale(1);
  }
  .impact-section-full .news-card:hover .news-image img { transform: scale(1.07); }
  
  .impact-section-full .home-pub-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0,0,0,.48);
    border-color: rgba(255,255,255,.28);
  }
  .impact-section-full .home-pub-card:hover .home-pub-image img { transform: scale(1.08); }
  
  /* pressed */
  .impact-section-full .impact-card:active,
  .impact-section-full .news-card:active,
  .impact-section-full .home-pub-card:active {
    transform: translateY(-3px);
  }
  
  /* =========================================
     WHERE WE WORK: INFO PANEL OVERLAY
  ========================================= */
  
  .where-we-work { position: relative; }
  
  .where-we-work .where-info-panel{
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 340px;
    max-width: calc(100% - 32px);
    margin-top: 0;
    z-index: 900; /* cukup tinggi di atas leaflet tiles */
  
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0,0,0,.18);
  }
  
  .where-we-work .where-info-panel h3{
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
  }
  
  .where-we-work .where-info-panel p{
    margin: 4px 0;
    font-size: 13px;
    line-height: 1.5;
  }
  
  @media (max-width: 520px){
    .where-we-work .where-info-panel{
      left: 12px;
      right: 12px;
      bottom: 12px;
      width: auto;
      max-width: none;
    }
  }
  
  /* =======================================
     RESPONSIVE FRONT
  ======================================= */
  
  @media (max-width: 960px) {
    .pillars-wrapper,
    .impact-section-full .impact-wrapper {
      grid-template-columns: 1fr;
    }
  
    .news-grid,
    .pub-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .pillars-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .project-row {
      grid-template-columns: 70px minmax(0, 1fr);
    }
  
    .summary-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .summary-layout {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .hero { min-height: 65vh; }
    .hero-content { padding: 96px 16px 72px; }
  
    .partners-track {
      gap: 24px;
      animation-duration: 30s;
    }
  
    .partner-item img { height: 56px; }
  }
  
  @media (max-width: 600px) {
    .news-grid,
    .pub-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-headline { font-size: 30px; }
  
    .hero-buttons { flex-direction: column; }
    .hero-toggle-link-main { width: 100%; justify-content: center; }
  
    .pillars-grid { grid-template-columns: 1fr; }
  
    .project-row { grid-template-columns: 1fr; }
  
    .summary-cards { grid-template-columns: 1fr; }
  
    .section-heading-link {
      display: flex;
      align-items: center;
      gap: 8px;
    }
  
    .section-heading-link .arrow-link {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff; /* di impact section tetap putih, di section lain bisa override dari base */
      text-decoration: none;
      transition: transform 0.2s ease, color 0.2s ease;
    }
  
    .section-heading-link .arrow-link:hover {
      transform: translateX(4px);
      color: #1c7a4d;
    }
  
    .ntfp-arrow-left { left: 0; }
    .ntfp-arrow-right { right: 0; }
  }
  