/* ============================================================
   DLH KUTAI TIMUR - REDESIGN ELEGAN & MODERN
   Dinas Lingkungan Hidup Kabupaten Kutai Timur
   Color Palette:
     Primary Green  : #1B5E20
     Secondary Green: #43A047
     Accent Blue    : #0288D1
     Accent Gold    : #F9A825
     Background     : #FFFFFF
     Surface        : #F5F7F5
     Text           : #263238
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:     #1B5E20;
  --primary-rgb: 27,94,32;
  --primary-light: #2E7D32;
  --primary-xlight: #E8F5E9;

  --secondary:   #43A047;
  --secondary-rgb: 67,160,71;

  --accent-blue: #0288D1;
  --accent-blue-rgb: 2,136,209;
  --accent-blue-light: #E3F2FD;

  --gold:        #F9A825;
  --gold-rgb:    249,168,37;
  --gold-light:  #FFF8E1;

  --bg:          #FFFFFF;
  --surface:     #F5F7F5;
  --surface2:    #EEF2EE;

  --text:        #263238;
  --text-muted:  #546E7A;
  --text-light:  #90A4AE;

  --border:      rgba(27,94,32,0.12);
  --shadow-sm:   0 2px 12px rgba(27,94,32,0.08);
  --shadow-md:   0 8px 32px rgba(27,94,32,0.12);
  --shadow-lg:   0 20px 60px rgba(27,94,32,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader::before {
  content: '';
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--gold);
  animation: dlh-spin 0.8s linear infinite;
}
#preloader > div { display: none; }

@keyframes dlh-spin {
  to { transform: rotate(360deg); }
}

/* ---------- SCROLL TOP ---------- */
#scroll-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9999;
}
#scroll-top.active, #scroll-top:focus {
  opacity: 1;
  pointer-events: all;
}
#scroll-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.dlh-topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: var(--font-body);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* PROFIL PEGAWAI */
.pegawai-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    border:1px solid #e5e7eb;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    transition:.35s ease;
}

.pegawai-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.pegawai-image{
    height:340px;
    overflow:hidden;
    background:#f5f7f9;
    position:relative;
}

.pegawai-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    transition:.5s ease;
}

.pegawai-card:hover .pegawai-image img{
    transform:scale(1.05);
}

.pegawai-body{
    padding:24px 20px;
    text-align:center;
    position:relative;
}

.pegawai-number{
    width:40px;
    height:40px;
    margin:-44px auto 15px;
    background:#1b5e20;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:.8rem;
    border:3px solid #fff;
    box-shadow:0 4px 12px rgba(27,94,32,.25);
}

.pegawai-body h4{
    font-size:1.05rem;
    font-weight:700;
    color:#1f2937;
    margin-bottom:12px;
    line-height:1.5;
    min-height:50px;
}

.pegawai-jabatan{
    display:inline-block;
    padding:8px 16px;
    background:#eef7ef;
    color:#1b5e20;
    border-radius:999px;
    font-size:.8rem;
    font-weight:600;
    margin:0;
}

@media (max-width:768px){

    .pegawai-image{
        height:280px;
    }

    .pegawai-body{
        padding:20px 16px;
    }

}
.dlh-topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.dlh-topbar .topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dlh-topbar .topbar-info a,
.dlh-topbar .topbar-info span {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dlh-topbar .topbar-info a:hover { color: var(--gold); }
.dlh-topbar .topbar-info i { color: var(--gold); font-size: 0.85rem; }
.dlh-topbar .topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  margin-left: 4px;
  transition: var(--transition);
}
.dlh-topbar .topbar-social a:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#header.dlh-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,94,32,0.08);
  padding: 0;
  top: 0;
  z-index: 999;
  position: sticky;
  border-bottom: 2px solid var(--primary-xlight);
  transition: var(--transition);
}
#header.dlh-header.scrolled {
  box-shadow: 0 4px 30px rgba(27,94,32,0.15);
}
#header.dlh-header .container-fluid {
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.dlh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.dlh-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.dlh-logo-text {
  display: flex;
  flex-direction: column;
}
.dlh-logo-text .logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.2;
}
.dlh-logo-text .logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Nav Menu */
#header.dlh-header #navmenu {
  flex: 1;
}
#header.dlh-header #navmenu ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
#header.dlh-header #navmenu > ul > li > a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
#header.dlh-header #navmenu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}
#header.dlh-header #navmenu > ul > li > a:hover,
#header.dlh-header #navmenu > ul > li > a.active {
  color: var(--primary);
  background: var(--primary-xlight);
}
#header.dlh-header #navmenu > ul > li > a:hover::after,
#header.dlh-header #navmenu > ul > li > a.active::after {
  transform: scaleX(1);
}
#header.dlh-header #navmenu .bi-chevron-down {
  font-size: 0.7rem;
  transition: var(--transition);
}
#header.dlh-header #navmenu .dropdown.active .bi-chevron-down,
#header.dlh-header #navmenu .dropdown:hover .bi-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
#header.dlh-header #navmenu .dropdown,
#header.dlh-header #navmenu .has-dropdown {
  position: relative;
}
#header.dlh-header #navmenu .dropdown ul,
#header.dlh-header #navmenu .dd-box-shadow {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
  list-style: none;
}
/* Invisible hover-bridge: fills the gap between the menu link and the
   dropdown so the hover state doesn't break while the cursor moves
   diagonally toward the submenu (fixes the "muncul sebentar lalu
   hilang" flicker bug) */
#header.dlh-header #navmenu .dropdown ul::before,
#header.dlh-header #navmenu .dd-box-shadow::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
#header.dlh-header #navmenu .dropdown:hover > ul,
#header.dlh-header #navmenu .dropdown:hover .dd-box-shadow,
#header.dlh-header #navmenu .dropdown ul:hover,
#header.dlh-header #navmenu .dd-box-shadow:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
#header.dlh-header #navmenu .dropdown ul li,
#header.dlh-header #navmenu .dd-box-shadow li {
  padding: 0;
}
#header.dlh-header #navmenu .dropdown ul a,
#header.dlh-header #navmenu .dd-box-shadow a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
}
#header.dlh-header #navmenu .dropdown ul a:hover,
#header.dlh-header #navmenu .dd-box-shadow a:hover {
  background: var(--primary-xlight);
  color: var(--primary);
  padding-left: 20px;
}

/* CTA Button in nav */
.dlh-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-xl) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(27,94,32,0.3);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition) !important;
}
.dlh-nav-cta:hover {
  background: var(--secondary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67,160,71,0.4) !important;
  color: #fff !important;
}
.dlh-nav-cta::after { display: none !important; }

/* Mobile toggle */
.mobile-nav-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  display: none;
}
@media (max-width: 1199px) {
  .mobile-nav-toggle { display: flex; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.dlh-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.dlh-hero .hero-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dlh-hero .hero-slider-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
}
/* Statis: tampilkan gambar pertama secara penuh, tanpa animasi fade */
.dlh-hero .hero-slider-wrap img:first-child {
  opacity: 1;
}

/* Overlay layers */
.dlh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,94,32,0.82) 0%,
    rgba(27,94,32,0.55) 50%,
    rgba(2,136,209,0.35) 100%
  );
  z-index: 1;
}
.dlh-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
}

/* Hero decorative elements */
.dlh-hero .hero-decor {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.dlh-hero .hero-decor-circle {
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -100px; right: -100px;
}
.dlh-hero .hero-decor-circle2 {
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(249,168,37,0.2);
  bottom: 80px; left: -50px;
}
.dlh-hero .hero-decor-leaf {
  width: 80px; height: 80px;
  border-radius: 0 50% 0 50%;
  background: rgba(249,168,37,0.12);
  top: 15%; right: 8%;
  transform: rotate(45deg);
}

/* Hero Content */
.dlh-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 80px 0 140px;
}
.dlh-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.dlh-hero .hero-badge i { font-size: 0.85rem; }
.dlh-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.dlh-hero h1 span { color: var(--gold); }
.dlh-hero .hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.dlh-hero .hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.75;
}
.dlh-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dlh-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(249,168,37,0.4);
  transition: var(--transition);
}
.dlh-hero .btn-hero-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249,168,37,0.4);
  color: var(--primary);
}
.dlh-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.dlh-hero .btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

/* Hero Stats floating card */
.dlh-hero .hero-stats {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
}
.dlh-hero .hero-stats-inner {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px 40px;
  display: flex;
  gap: 0;
  box-shadow: 0 -8px 40px rgba(27,94,32,0.1);
  border-top: 3px solid var(--primary-xlight);
}
.dlh-hero .hero-stat-item {
  text-align: center;
  padding: 0 28px;
  position: relative;
}
.dlh-hero .hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border);
}
.dlh-hero .hero-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.dlh-hero .hero-stat-item .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.dlh-section {
  padding: 90px 0;
}
.dlh-section-alt {
  background: var(--surface);
}
.dlh-section-title {
  text-align: center;
  margin-bottom: 60px;
}
.dlh-section-title .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--primary-xlight);
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
}
.dlh-section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.dlh-section-title p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.dlh-section-title .divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.dlh-about {
  background: var(--bg);
  overflow: visible;
}
.dlh-about .about-visual {
  position: relative;
}
.dlh-about .about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.dlh-about .about-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.dlh-about .about-badge-float .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  display: block;
}
.dlh-about .about-badge-float .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.dlh-about .about-text {
  padding: 0 0 0 48px;
}
@media (max-width: 991px) {
  .dlh-about .about-text { padding: 0; }
}
.dlh-about .about-text .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--primary-xlight);
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.dlh-about .about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.dlh-about .about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.97rem;
}

/* Info cards */
.dlh-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.dlh-info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.dlh-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  transform: translateY(-3px);
}
.dlh-info-card .ic-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dlh-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.dlh-info-card p {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.dlh-stats {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.dlh-stats::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.dlh-stats::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(249,168,37,0.08);
}
.dlh-stats .container { position: relative; z-index: 1; }
.dlh-stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.dlh-stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.dlh-stat-card .stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.dlh-stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.dlh-stat-card .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.dlh-gallery {
  background: var(--surface);
}
.dlh-gallery-foto .gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dlh-gallery-foto .gallery-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.dlh-gallery-foto .gallery-split img:first-child {
  grid-row: span 2;
}
.dlh-gallery-foto .gallery-split img:hover {
  transform: scale(1.04);
}
.dlh-gallery-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 48px;
}
@media (max-width: 991px) {
  .dlh-gallery-text { padding: 32px 0 0; }
}
.dlh-gallery-text .gallery-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.dlh-gallery-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.dlh-gallery-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.dlh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.dlh-btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Video */
.dlh-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}
.dlh-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.dlh-faq {
  background: var(--bg);
}
.dlh-faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.dlh-faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.dlh-faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.dlh-faq-item .faq-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary-xlight);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.dlh-faq-item.active .faq-num {
  background: var(--primary);
  color: #fff;
}
.dlh-faq-item .faq-question {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}
.dlh-faq-item .faq-toggle {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.dlh-faq-item.active .faq-toggle {
  transform: rotate(90deg);
  color: var(--primary);
}
.dlh-faq-item .faq-body {
  padding: 0 20px 18px 64px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: none;
}
.dlh-faq-item.active .faq-body { display: block; }
.dlh-faq-aside {
  position: sticky;
  top: 100px;
}
.dlh-faq-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  text-align: center;
}
.dlh-faq-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.dlh-faq-card h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.dlh-faq-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.dlh-faq-card .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 11px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.dlh-faq-card .btn-gold:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   BERITA / NEWS SECTION
   ============================================================ */
.dlh-news {
  background: var(--surface);
}
.dlh-news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.dlh-news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.dlh-news-card .card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.dlh-news-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.dlh-news-card:hover .card-img-wrap img {
  transform: scale(1.06);
}
.dlh-news-card .card-date-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.04em;
}
.dlh-news-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dlh-news-card .card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dlh-news-card .card-title a {
  color: inherit;
  transition: var(--transition);
}
.dlh-news-card .card-title a:hover { color: var(--primary); }
.dlh-news-card .card-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.dlh-news-card .card-footer-meta .date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dlh-news-card .card-footer-meta .read-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.dlh-news-card .card-footer-meta .read-link:hover {
  color: var(--secondary);
  gap: 8px;
}

/* ============================================================
   PAGE TITLE / BREADCRUMB
   ============================================================ */
.dlh-page-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.dlh-page-title::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.dlh-page-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--secondary), var(--accent-blue));
}
.dlh-page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.dlh-page-title .breadcrumbs {
  background: rgba(0,0,0,0.15);
  padding: 10px 0;
  margin-top: 20px;
}
.dlh-page-title .breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.82rem;
}
.dlh-page-title .breadcrumbs ol li { color: rgba(255,255,255,0.7); }
.dlh-page-title .breadcrumbs ol li a { color: rgba(255,255,255,0.85); }
.dlh-page-title .breadcrumbs ol li a:hover { color: var(--gold); }
.dlh-page-title .breadcrumbs ol li.current { color: var(--gold); font-weight: 600; }
.dlh-page-title .breadcrumbs ol li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.dlh-footer {
  background: #0D3B11;
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.dlh-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
}
.dlh-footer::after {
  content: '';
  position: absolute;
  bottom: 60px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}
.dlh-footer .footer-logo img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.dlh-footer .footer-logo p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.dlh-footer .footer-social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.dlh-footer .footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.dlh-footer .footer-social a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}
.dlh-footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.dlh-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.dlh-footer .footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.dlh-footer .footer-links li {
  margin-bottom: 8px;
}
.dlh-footer .footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.dlh-footer .footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.dlh-footer .footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.dlh-footer .footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.dlh-footer .footer-contact-item .fc-icon {
  width: 36px; height: 36px;
  background: rgba(67,160,71,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.dlh-footer .footer-contact-item .fc-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.dlh-footer .footer-contact-item .fc-text strong {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 2px;
}
.dlh-footer .footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  margin-top: 48px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.dlh-footer .footer-bottom span { color: var(--gold); }

/* ============================================================
   ABOUT & OTHER CONTENT PAGES
   ============================================================ */
.dlh-content-section {
  padding: 80px 0;
}
.dlh-icon-box {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.dlh-icon-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: var(--transition);
}
.dlh-icon-box:hover::before { opacity: 1; }
.dlh-icon-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.dlh-icon-box i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.dlh-icon-box h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}
.dlh-icon-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Map Card */
.dlh-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.dlh-map-card .map-footer {
  background: var(--surface);
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dlh-map-card .map-footer i { color: var(--primary); }

/* ============================================================
   BERITA PAGE CARDS
   ============================================================ */
.dlh-berita-section {
  padding: 70px 0;
}
.dlh-alert-empty {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  text-align: center;
  color: var(--text-muted);
}
.dlh-alert-empty i {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: block;
}
.dlh-alert-empty h4 { color: var(--text); margin-bottom: 8px; }

/* Pagination */
.dlh-pagination .pagination {
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}
.dlh-pagination .page-link {
  border-radius: var(--radius-sm) !important;
  border-color: var(--border);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  transition: var(--transition);
}
.dlh-pagination .page-link:hover,
.dlh-pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ============================================================
   AGENDA PAGE
   ============================================================ */
.dlh-agenda-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  margin-bottom: 16px;
}
.dlh-agenda-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  transform: translateX(4px);
}
.dlh-agenda-card .agenda-date-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}
.dlh-agenda-card .agenda-date-box .day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.dlh-agenda-card .agenda-date-box .mon {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.dlh-agenda-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}
.dlh-agenda-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   GALERI FOTO PAGE
   ============================================================ */
.dlh-galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.dlh-galeri-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.dlh-galeri-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.dlh-galeri-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,94,32,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dlh-galeri-item .overlay i {
  font-size: 2rem;
  color: #fff;
  transform: scale(0.7);
  transition: var(--transition);
}
.dlh-galeri-item:hover img { transform: scale(1.06); }
.dlh-galeri-item:hover .overlay { opacity: 1; }
.dlh-galeri-item:hover .overlay i { transform: scale(1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  #header.dlh-header #navmenu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: #fff;
    padding: 80px 24px 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 9998;
  }
  #header.dlh-header #navmenu.mobile-nav-active { right: 0; }
  #header.dlh-header #navmenu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  #header.dlh-header #navmenu > ul > li { width: 100%; }
  #header.dlh-header #navmenu > ul > li > a { width: 100%; }
  #header.dlh-header #navmenu .dropdown ul,
  #header.dlh-header #navmenu .dd-box-shadow {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    background: var(--surface);
    display: none;
    margin-top: 4px;
  }
  #header.dlh-header #navmenu .dropdown ul::before,
  #header.dlh-header #navmenu .dd-box-shadow::before {
    content: none;
  }
  #header.dlh-header #navmenu .dropdown.open ul,
  #header.dlh-header #navmenu .dropdown.open .dd-box-shadow {
    display: block;
  }
  .mobile-nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    display: none;
  }
  .mobile-nav-overlay.active { display: block; }
}

@media (max-width: 767px) {
  .dlh-hero { min-height: 75vh; }
  .dlh-hero h1 { font-size: 2rem; }
  .dlh-hero .hero-stats-inner {
    padding: 16px 12px;
    gap: 0;
  }
  .dlh-hero .hero-stat-item { padding: 0 14px; }
  .dlh-hero .hero-stat-item .stat-num { font-size: 1.6rem; }
  .dlh-info-grid { grid-template-columns: 1fr; }
  .dlh-section { padding: 60px 0; }
  .dlh-topbar { display: none; }
}

@media (max-width: 480px) {
  .dlh-hero .hero-stats-inner { flex-wrap: wrap; border-radius: 0; }
  .dlh-hero .hero-stat-item { flex: 1 1 50%; border: none; padding: 10px; }
}

/* ============================================================
   AOS OVERRIDE
   ============================================================ */
[data-aos] { will-change: transform, opacity; }
