    :root {
      --primary: #0b2346;
      --secondary: #67b64a;
      --dark: #07172d;
      --muted: #6c7a89;
      --light-bg: #f4f7fb;
      --card-shadow: 0 20px 50px rgba(11, 35, 70, 0.08);
      --radius-xl: 28px;
    }

    * {
      font-family: 'Montserrat', sans-serif;
    }

    body {
      color: var(--primary);
      background: #ffffff;
    }

    .navbar {
      transition: all 0.3s ease;
      background: transparent;
      backdrop-filter: none;
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .navbar.scrolled {
      background: rgba(8, 20, 40, 0.72);
      backdrop-filter: blur(16px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      padding-top: 0.65rem;
      padding-bottom: 0.65rem;
    }

	/* Saat mobile menu terbuka */
	.navbar:has(.navbar-collapse.show) {
	  background: rgba(8, 20, 40, 0.72);
	  backdrop-filter: blur(16px);
	  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	  padding-top: 0.65rem;
	  padding-bottom: 0.65rem;
	}

    .navbar-brand {
      font-weight: 800;
      letter-spacing: 0.2px;
      color: #ffffff !important;
    }

    .navbar.scrolled .navbar-brand {
      color: #ffffff !important;
    }

    .nav-link {
      color: #ffffff !important;
      font-weight: 600;
      margin: 0 0.35rem;
    }

    .navbar.scrolled .nav-link {
      color: #ffffff !important;
    }

    /* NAV LINK HOVER ANIMATION (exclude dropdown) */
    .navbar .nav-link:not(.dropdown-toggle) {
      position: relative;
      transition: color 0.3s ease;
    }

    /* garis bawah */
    .navbar .nav-link:not(.dropdown-toggle)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0%;
      height: 2px;
      background: #8ad45f;
      transition: width 0.3s ease;
    }

    /* hover effect */
    .navbar .nav-link:not(.dropdown-toggle):hover {
      color: #8ad45f !important;
    }

    .navbar .nav-link:not(.dropdown-toggle):hover::after {
      width: 100%;
    }

    /* active */
    .navbar .nav-link:not(.dropdown-toggle).active {
      color: #8ad45f !important;
    }

    .navbar .nav-link:not(.dropdown-toggle).active::after {
      width: 100%;
    }
    /* NAV LINK HOVER ANIMATION (exclude dropdown) */

    .btn-brand {
      background: rgba(255,255,255,0.12);
      color: #fff;
      border-radius: 14px;
      padding: 0.85rem 1.2rem;
      font-weight: 700;
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(10px);
    }

    .btn-brand:hover {
      background: rgba(255,255,255,0.2);
      color: #fff;
    }

    .dropdown-item.active,
    .dropdown-item:active {
      background: rgba(103, 182, 74, 0.12);
      color: var(--primary);
      font-weight: 700;
    }

    .btn-soft {
      background: #fff;
      color: var(--primary);
      border-radius: 14px;
      padding: 0.85rem 1.4rem;
      font-weight: 600;
      border: 1px solid rgba(11, 35, 70, 0.1);
    }

    .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #07172d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 23, 45, 0.84) 0%,
    rgba(7, 23, 45, 0.56) 38%,
    rgba(7, 23, 45, 0.28) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08) translateX(40px);
  transition: opacity 1.2s ease, transform 7s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slidePan 12s ease-in-out infinite alternate;
}

    .hero-indicators {
      position: absolute;
      left: 50%;
      bottom: 32px;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 10px;
    }

    .hero-dot {
      width: 36px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.35);
      overflow: hidden;
    }

    .hero-dot span {
      display: block;
      width: 0%;
      height: 100%;
      background: #8ad45f;
      transition: width 0.25s linear;
    }

    @keyframes slidePan {
      from { transform: translateX(0) scale(1.02); }
      to { transform: translateX(-36px) scale(1.08); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 7rem;
      padding-bottom: 7rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      background: rgba(103, 182, 74, 0.14);
      color: #d6f2ca;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      padding: 0.55rem 1rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      margin-bottom: 1.25rem;
    }

    .hero h1 {
      font-size: clamp(2.7rem, 6vw, 5rem);
      line-height: 1.05;
      font-weight: 800;
      max-width: 860px;
      margin-bottom: 1.25rem;
    }

    .hero h1 span {
      color: #8ad45f;
    }

    .hero p {
      max-width: 640px;
      font-size: 1.1rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.88);
    }

    .hero-stats {
      position: relative;
      z-index: 2;
      margin-top: -70px;
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      border-radius: 0;
      margin-top: 0;
      padding: 2rem 0;
      background: rgba(8, 20, 40, 0.72);
      backdrop-filter: blur(16px);
      border: none;
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: none;
      pointer-events: none;
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    .dropdown.mega-open .mega-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .dropdown.mega-open .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mega-menu-wrap {
      display: grid;
      grid-template-columns: 280px 1fr;
      min-height: 340px;
    }

    .mega-illustration {
      position: relative;
      background: linear-gradient(180deg, rgba(11,35,70,0.2), rgba(7,23,45,0.68)), url('https://energinegeri.co.id/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-19-at-08.20.41.jpeg') center/cover no-repeat;
      padding: 1.5rem;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .mega-illustration h6 {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .mega-illustration p {
      margin-bottom: 0;
      color: rgba(255,255,255,0.84);
      line-height: 1.7;
      font-size: 0.92rem;
    }

    .mega-links {
      padding: 0 2rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .mega-link-item {
      position: relative;
      min-height: 180px;
      border-radius: 20px;
      overflow: hidden;
      padding: 1rem;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: flex-end;
      background-size: cover;
      background-position: center;
      box-shadow: inset 0 -120px 100px rgba(0,0,0,0.6);
      transition: all 0.3s ease;
    }

    .mega-link-item:hover {
      transform: scale(1.03);
      box-shadow: inset 0 -140px 120px rgba(0,0,0,0.7);
    }

    .mega-link-item:hover {
      transform: translateY(-3px);
      box-shadow: inset 0 -140px 120px rgba(7,23,45,0.72), 0 18px 30px rgba(11,35,70,0.16);
      color: #fff;
    }

    .mega-link-item strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .mega-link-item small {
      color: rgba(255,255,255,0.86);
      font-size: 0.8rem;
      line-height: 1.5;
    }

    .floating-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: var(--radius-xl);
      box-shadow: var(--card-shadow);
      padding: 1.2rem;
    }

    .feature-box {
      padding: 1.2rem;
      border-radius: 20px;
      height: 100%;
    }

    .icon-badge {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(103, 182, 74, 0.12);
      color: var(--secondary);
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .section {
      padding: 90px 0;
    }

    .section-light {
      background: var(--light-bg);
    }

    .section-title-top {
      color: var(--secondary);
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .text-muted-custom {
      color: var(--muted);
      line-height: 1.85;
    }

    .stat-item h3 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.35rem;
    }

	.section-partners {
  position: relative;
  background: url('https://energinegeri.co.id/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-19-at-08.36.20.jpeg') center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.section-partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 23, 45, 0.55),
    rgba(7, 23, 45, 0.65)
  );
  z-index: 1;
}

/* semua isi section di atas overlay */
.section-partners .container {
  position: relative;
  z-index: 2;
}

.partners-slider-wrap {
  position: relative;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: partnersMarquee 28s linear infinite;
  will-change: transform;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo-card {
  flex: 0 0 auto;
  width: 200px;
  height: 110px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(11, 35, 70, 0.08);
  box-shadow: 0 12px 30px rgba(11, 35, 70, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11, 35, 70, 0.10);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.partners-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.partners-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11, 35, 70, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.partners-arrow:hover {
  transform: translateY(-2px);
  background: var(--secondary);
  color: #fff;
}

@keyframes partnersMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .partner-logo-card {
    width: 170px;
    height: 96px;
  }
}

@media (max-width: 575.98px) {
  .partner-logo-card {
    width: 145px;
    height: 88px;
    padding: 1rem;
  }

  .partner-logo-card img {
    max-height: 44px;
  }

  .partners-track {
    gap: 16px;
  }
}

    .project-card,
    .news-card {
      border: none;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      height: 100%;
      background: #fff;
    }

    .project-card img,
    .news-card img {
      height: 230px;
      object-fit: cover;
    }

    .tag-chip {
      position: absolute;
      top: 18px;
      left: 18px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--primary);
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .cta-section {
      position: relative;
      background:
        linear-gradient(90deg, rgba(103, 182, 74, 0.92), rgba(11, 35, 70, 0.92)),
        url('https://energinegeri.co.id/wp-content/uploads/2026/04/bg_enm.png') center/cover no-repeat;
      color: white;
      border-radius: 32px;
      overflow: hidden;
      padding: 3rem;
    }

    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.8);
      padding: 70px 0 30px;
    }

    footer h6 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    footer a {
      color: rgba(255, 255, 255, 0.78);
      text-decoration: none;
      display: inline-block;
      margin-bottom: 0.6rem;
    }

    footer a:hover {
      color: #fff;
    }

    .social-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.55rem;
      color: white;
      text-decoration: none;
      font-weight: 700;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.7s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 991.98px) {
      .hero {
        min-height: auto;
        padding-top: 5rem;
      }

      .hero-stats {
        margin-top: -30px;
      }

      .cta-section {
        padding: 2rem;
      }

      .mega-menu {
        min-width: 100%;
      }

      .mega-menu-wrap {
        grid-template-columns: 1fr;
      }

      .mega-illustration {
        min-height: 180px;
      }
    }

      .hero-stats {
        margin-top: -30px;
      }

      .cta-section {
        padding: 2rem;
      }
    }

    @media (max-width: 767.98px) {
      .hero h1 {
        font-size: 2.6rem;
      }

      .floating-card {
        padding: 0.6rem;
      }

      .project-card img,
      .news-card img {
        height: 200px;
      }
    }
  
.admin-bar .navbar.fixed-top { top: 32px; }
@media (max-width: 782px) { .admin-bar .navbar.fixed-top { top: 46px; } .breadcrumb-custom{font-size: 0.8rem;}}
.navbar-toggler { border-color: rgba(255,255,255,0.5); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: brightness(0) invert(1); }
img { max-width: 100%; height: auto; }
.hero + .hero-stats { position: relative; }


.navbar-toggler{border-color:rgba(255,255,255,0.4);}
.navbar-toggler:focus{box-shadow:none;}
.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;}
.page-hero{position:relative;padding:180px 0 100px;color:#fff;background:#07172d center/cover no-repeat;}
.page-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg, rgba(7,23,45,.84), rgba(7,23,45,.56), rgba(7,23,45,.35));}
.page-hero .container{position:relative;z-index:2;}
.page-hero h1,.page-hero .hero-title{font-size:clamp(2.2rem, 5vw, 4.2rem);font-weight:800;line-height:1.08;margin:0 0 1rem;}
.page-hero p{max-width:760px;color:rgba(255,255,255,.88);font-size:1.05rem;line-height:1.85;}
.breadcrumb-custom{display:inline-flex;gap:8px;background:rgba(103,182,74,.15);border:1px solid rgba(255,255,255,.18);padding:.55rem 1rem;border-radius:999px;margin-bottom:1rem;}
.contact-box,.about-card,.detail-card,.news-detail-card,.team-card,.page-cta,.cta-section{border-radius:28px;box-shadow:var(--card-shadow);padding:1.5rem;}
.detail-card.card,.news-detail-card.card,.project-card.card,.news-card.card,.team-card.card{overflow:hidden;border:none;border-radius:24px;box-shadow:var(--card-shadow);}
.detail-card img,.news-detail-card img,.project-card img,.news-card img,.team-card img{display:block;width:100%;height:260px;object-fit:cover;}
.project-card .tag-chip{position:absolute;left:16px;top:16px;background:#67b64a;color:#fff;padding:.35rem .75rem;border-radius:999px;font-size:.75rem;font-weight:700;z-index:2;}
.section-subtitle{color:var(--muted);max-width:760px;line-height:1.85;}
.timeline{position:relative;padding-left:24px;}
.timeline:before{content:"";position:absolute;left:4px;top:0;bottom:0;width:2px;background:rgba(11,35,70,.12);}
.timeline-item{position:relative;padding-left:22px;margin-bottom:24px;}
.timeline-item:before{content:"";position:absolute;left:-1px;top:8px;width:12px;height:12px;border-radius:50%;background:#67b64a;}
.value-chip{display:inline-block;background:rgba(103,182,74,.12);color:var(--primary);padding:.7rem 1rem;border-radius:999px;font-weight:600;margin:0 .5rem .5rem 0;}
.contact-list-item{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1rem;}
.map-placeholder,.map-frame{min-height:100%;height:100%;width:100%;border-radius:28px;border:0;background:#eaf0f6;}
.map-frame{min-height:320px; max-height:520px;}
.entry-content{line-height:1.9;color:var(--primary);}
.entry-content p{margin-bottom:1rem;}
.project-sidebar{position:sticky;top:110px;}
@media (max-width:991.98px){.mega-menu{display:none;}.page-hero{padding-top:150px;}}


.navbar-toggler{border-color:rgba(255,255,255,.35);background:rgba(255,255,255,.08)}
.navbar-toggler:focus{box-shadow:none}.navbar-toggler-icon{filter:invert(1)}
.filter-bar,.contact-form-wrap{background:#fff;border-radius:24px;box-shadow:var(--card-shadow);padding:1.25rem}
.filter-chip{display:inline-flex;align-items:center;padding:.7rem 1rem;border-radius:999px;border:1px solid rgba(11,35,70,.12);text-decoration:none;color:var(--primary);font-weight:600;background:#fff;margin:.35rem .35rem 0 0}
.filter-chip.active,.filter-chip:hover{background:var(--primary);color:#fff}
.contact-form-wrap .form-control{border-radius:14px;padding:.9rem 1rem;border:1px solid rgba(11,35,70,.12)}
.contact-form-wrap .form-control:focus{box-shadow:none;border-color:var(--secondary)}
.archive-toolbar{background:#f8fbff;border:1px solid rgba(11,35,70,.08);padding:20px;border-radius:22px}
.archive-toolbar .form-control,.archive-toolbar .form-select{border-radius:14px;padding:.8rem 1rem;border:1px solid rgba(11,35,70,.14)}
.page-numbers{display:flex;gap:8px;list-style:none;padding:0;margin:0}
.page-numbers li{list-style:none}
.page-numbers a,.page-numbers span{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;border-radius:999px;border:1px solid rgba(11,35,70,.12);text-decoration:none;color:var(--primary);font-weight:700;padding:0 14px;background:#fff}
.page-numbers .current,.page-numbers a:hover{background:var(--primary);color:#fff}

.enm-extra-html > *:last-child{margin-bottom:0}.enm-custom-layout{max-width:100%}.enm-custom-layout .wp-block-group{margin-bottom:1.5rem}.enm-custom-layout iframe{max-width:100%}.enm-custom-layout .wp-block-columns{margin-bottom:1.5rem}
