:root {
      --emerald:     #1a5c45;
      --emerald-mid: #237a5b;
      --emerald-lt:  #2fa878;
      --gold:        #c9973a;
      --gold-lt:     #e8b95a;
      --cream:       #fdf8f0;
      --cream-dark:  #f2ead8;
      --text-dark:   #1c1a17;
      --text-mid:    #4a4035;
      --text-soft:   #7a6e60;
      --white:       #ffffff;
      --mahad-green: #0d6e4f;
      --mahad-green-dark: #0a5a40;
      --mahad-gold: #c9a84c;
      --mahad-gold-light: #e8c76b;
      --nav-h: 60px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

    /* SCROLLBAR */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream-dark); }
    ::-webkit-scrollbar-thumb { background: var(--emerald-mid); border-radius: 3px; }

    /* ============================================
   NAVBAR — pertahankan semua style lama kamu
   ============================================ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 70px;
      background: rgba(26,92,69,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,151,58,.3);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.25); }
    .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,151,58,.3);
  overflow: hidden;          /* gambar tidak keluar dari lingkaran */
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);  /* fallback jika logo transparan */
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* ganti ke cover jika logo penuh tanpa padding */
  display: block;
}
    .nav-title { font-family: 'Lora', serif; color: var(--white); font-size: 1.1rem; line-height: 1.2; }
    .nav-title span { display: block; font-size: .65rem; color: var(--gold-lt); font-family: 'Nunito', sans-serif; font-weight: 300; letter-spacing: .05em; }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,.82); text-decoration: none; font-size: .875rem; font-weight: 600;
      letter-spacing: .03em; transition: color .2s; position: relative;
    }
    .nav-links a::after {
      content:''; position: absolute; bottom:-4px; left:0; right:100%;
      height:2px; background: var(--gold-lt); transition: right .25s;
    }
    .nav-links a:hover { color: var(--gold-lt); }
    .nav-links a:hover::after { right: 0; }
    .nav-cta {
      background: var(--gold); color: var(--emerald) !important;
      padding: 7px 18px; border-radius: 30px; font-weight: 700 !important;
      transition: background .2s, transform .2s !important;
    }
    .nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }
    .nav-cta::after { display: none !important; }

    /* ============================================
      HAMBURGER — sebelumnya sudah ada, tambah
      animasi open state & touch target
      ============================================ */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 10px;   /* diperbesar: touch target ~44px */
      border: none; background: transparent;
      border-radius: 8px;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-hamburger span {
      width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: transform .28s, opacity .28s, width .28s;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ============================================
      MOBILE DRAWER — tambahan baru
      ============================================ */
    .nav-drawer {
      position: absolute;
      top: 70px; left: 0; right: 0;
      background: rgba(15,70,50,0.98);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(201,151,58,.2);
      z-index: 999;
      overflow: hidden;
      max-height: 0;
      transition: max-height .3s ease;
    }
    .nav-drawer.open { max-height: 420px; }

    .nav-drawer nav {
      position: static !important;
      height: auto !important;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      padding: .5rem .75rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 2px;
      z-index: auto !important;
    }
    .nav-drawer a {
      display: flex; align-items: center; gap: 12px;
      padding: 13px 14px;
      color: rgba(255,255,255,.88);
      text-decoration: none;
      font-family: 'Nunito', sans-serif;
      font-size: 15px; font-weight: 600;
      border-radius: 8px;
      transition: background .15s;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-drawer a::after {
      display: none !important;
    }
    .nav-drawer a i { font-size: 18px; color: rgba(255,255,255,.4); }
    .nav-drawer a:active { background: rgba(255,255,255,.08); }
    .nav-drawer a.active {
      background: rgba(255,255,255,.08);
      color: #fff;
    }
    .nav-drawer a.active i { color: var(--gold); }

    .drawer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }

    .drawer-cta {
      justify-content: center;
      background: var(--gold) !important;
      color: var(--emerald) !important;
      font-family: 'Nunito', sans-serif;
      font-weight: 700 !important;
      border-radius: 30px !important;   /* selaraskan dengan .nav-cta desktop */
      margin-top: 4px;
    }
    .drawer-cta i { color: var(--emerald) !important; }

    /* ── WebP picture element — tampil seperti background-image ── */
    .cs-img-picture {
        position: absolute;
        inset: 0;               /* top:0 right:0 bottom:0 left:0 */
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .cs-img-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Pastikan .cs-img punya position relative */
    .cs-img {
        position: relative;
        overflow: hidden;
        /* ... style lainnya tetap sama ... */
    }
    /* ============================================
      RESPONSIVE — mobile first breakpoints
      ============================================ */

    /* Mobile: sembunyikan nav-links, tampilkan hamburger */
    @media (max-width: 768px) {
      nav { padding: 0 1.25rem; height: 62px; }
      .nav-drawer { top: 62px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-title { font-size: 1rem; }
      .nav-title span { display: none; } /* terlalu panjang di layar kecil */
    }

    /* Tablet: sedikit lebih lega */
    @media (min-width: 768px) and (max-width: 1023px) {
      nav { padding: 0 2rem; }
      .nav-links { gap: 18px; }
    }
    /* HERO */
    .hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(160deg, #0d3d2b 0%, #1a5c45 45%, #0f4a36 100%);
    }
    .hero-bg::before {
      content:''; position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(201,151,58,.04) 40px, rgba(201,151,58,.04) 41px),
        repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(201,151,58,.04) 40px, rgba(201,151,58,.04) 41px);
    }
    .hero-bg::after {
      content:''; position: absolute; top:-20%; right:-10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,151,58,.12) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero-deco {
      position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
      width: 380px; height: 380px; opacity: .12;
    }
    .hero-deco svg { width: 100%; height: 100%; }
    .hero-content {
      position: relative; z-index: 2;
      padding: 120px 8% 140px;
      max-width: 700px;
      animation: fadeUp .8s ease both;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,151,58,.2); border: 1px solid rgba(201,151,58,.4);
      color: var(--gold-lt); padding: 6px 16px; border-radius: 30px;
      font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 24px; animation: fadeUp .8s .1s ease both;
    }
    .hero-badge::before {
      content:''; width:6px; height:6px; border-radius:50%;
      background: var(--gold-lt); animation: pulse 2s infinite;
    }
    .hero h1 {
      font-family: 'Lora', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      color: var(--white); line-height: 1.15; margin-bottom: 12px;
      animation: fadeUp .8s .2s ease both;
    }
    .hero h1 em { font-style: italic; color: var(--gold-lt); }
    .hero-arabic {
      font-family: 'Amiri', serif; font-size: clamp(1.4rem, 3vw, 2rem);
      color: rgba(255,255,255,.55); direction: rtl; margin-bottom: 24px;
      animation: fadeUp .8s .3s ease both;
    }
    .hero p {
      color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.8;
      max-width: 540px; margin-bottom: 36px; animation: fadeUp .8s .4s ease both;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s .5s ease both; }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--emerald); padding: 13px 30px; border-radius: 40px;
      font-weight: 700; font-size: .9rem; text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(201,151,58,.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,151,58,.5); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,.4); color: var(--white);
      padding: 11px 28px; border-radius: 40px; font-weight: 600; font-size: .9rem;
      text-decoration: none; transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: var(--gold-lt); background: rgba(201,151,58,.1); }

    /* HERO STATS */
    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0;
      display: flex; justify-content: center;
      background: rgba(0,0,0,.25); backdrop-filter: blur(8px);
      border-top: 1px solid rgba(201,151,58,.2); z-index: 2;
      animation: fadeUp .8s .6s ease both;
    }
    .stat-item {
      flex: 1; max-width: 200px; text-align: center; padding: 20px 16px;
      border-right: 1px solid rgba(201,151,58,.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: 'Lora', serif; font-size: 1.8rem; color: var(--gold-lt); font-weight: 700; }
    .stat-label { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

    /* CAROUSEL */
    .carousel-section { background: var(--emerald); padding: 60px 5%; overflow: hidden; }
    .section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
    .section-label-bar { width: 4px; height: 28px; background: linear-gradient(to bottom, var(--gold), var(--gold-lt)); border-radius: 2px; }
    .section-label h2 { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--white); }
    .section-label .sub { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 300; letter-spacing: .06em; }
    .carousel-track-wrap { position: relative; overflow: hidden; }
    .carousel-track { display: flex; gap: 20px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
    .carousel-slide {
      min-width: calc(33.33% - 14px); background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
      overflow: hidden; flex-shrink: 0; transition: transform .3s, box-shadow .3s;
    }
    .carousel-slide:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
    .cs-img { height: 180px; position: relative; overflow: hidden; }
    .cs-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
    .carousel-slide:hover .cs-img-bg { transform: scale(1.06); }
    .cs-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); }
    .cs-category {
      position: absolute; top: 12px; left: 12px;
      background: var(--gold); color: var(--emerald);
      font-size: .65rem; font-weight: 700; padding: 3px 10px;
      border-radius: 20px; text-transform: uppercase; letter-spacing: .08em;
    }
    .cs-body { padding: 18px; }
    .cs-date { font-size: .72rem; color: rgba(255,255,255,.45); margin-bottom: 6px; }
    .cs-title { font-family: 'Lora', serif; color: var(--white); font-size: .98rem; line-height: 1.45; margin-bottom: 10px; }
    .cs-excerpt { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; }
    .carousel-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 24px; }
    .car-btn {
      width: 42px; height: 42px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08);
      color: var(--white); font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
    }
    .car-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--emerald); }
    .car-dots { display: flex; gap: 6px; }
    .car-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.25); cursor: pointer; transition: background .2s, transform .2s;
    }
    .car-dot.active { background: var(--gold); transform: scale(1.3); }

    /* BERITA */
    .news-section { padding: 80px 5%; background: var(--cream); }
    .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
    .section-title-wrap { display: flex; align-items: center; gap: 12px; }
    .section-bar { width: 5px; height: 40px; background: linear-gradient(to bottom, var(--emerald), var(--emerald-lt)); border-radius: 3px; }
    .section-title-wrap h2 { font-family: 'Lora', serif; font-size: 1.8rem; color: var(--emerald); }
    .section-title-wrap p { font-size: .82rem; color: var(--text-soft); margin-top: 2px; }
    .view-all { font-size: .84rem; color: var(--emerald-mid); text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 5px; transition: gap .2s; }
    .view-all:hover { gap: 10px; }
    .filter-chips { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
    .chip {
      padding: 6px 16px; border-radius: 20px; font-size: .78rem; font-weight: 600;
      cursor: pointer; border: 1.5px solid var(--cream-dark); background: var(--white);
      color: var(--text-soft); transition: all .2s;
    }
    .chip.active, .chip:hover { background: var(--emerald); border-color: var(--emerald); color: var(--white); }
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .news-card {
      background: var(--white); border-radius: 16px; overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
      border: 1px solid rgba(0,0,0,.05);
    }
    .news-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
    .nc-img { height: 190px; position: relative; overflow: hidden; }
    .nc-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
    .news-card:hover .nc-img-bg { transform: scale(1.08); }
    .nc-cat {
      position: absolute; bottom: 12px; left: 12px;
      background: var(--emerald); color: var(--white);
      font-size: .62rem; font-weight: 700; padding: 3px 10px;
      border-radius: 20px; text-transform: uppercase; letter-spacing: .06em;
    }
    .nc-body { padding: 20px; }
    .nc-meta { display: flex; align-items: center; gap: 12px; font-size: .72rem; color: var(--text-soft); margin-bottom: 10px; }
    .nc-title { font-family: 'Lora', serif; font-size: 1rem; color: var(--text-dark); line-height: 1.5; margin-bottom: 10px; }
    .nc-excerpt { font-size: .8rem; color: var(--text-soft); line-height: 1.7; }
    .nc-footer { padding: 14px 20px; border-top: 1px solid var(--cream-dark); display: flex; align-items: center; justify-content: space-between; }
    .nc-author { display: flex; align-items: center; gap: 8px; }
    .nc-avatar { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--white); }
    .nc-author-name { font-size: .75rem; color: var(--text-mid); font-weight: 600; }
    .nc-read { font-size: .73rem; color: var(--emerald-mid); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 4px; }
    .nc-read:hover { color: var(--gold); }

    /* PAGINATION */
    .pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
    .pg-btn {
      width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
      border-radius: 10px; border: 1.5px solid var(--cream-dark); background: var(--white);
      color: var(--text-mid); font-size: .88rem; font-weight: 600; cursor: pointer;
      transition: all .2s; text-decoration: none;
    }
    .pg-btn:hover, .pg-btn.active { background: var(--emerald); border-color: var(--emerald); color: var(--white); }
    .pg-btn.prev, .pg-btn.next { width: auto; padding: 0 16px; font-size: .8rem; }
    .pg-ellipsis { color: var(--text-soft); padding: 0 4px; line-height: 40px; }

    /* NEWS EMPTY STATE */
    .news-empty-state {
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; text-align: center;
      padding: 70px 20px;
      background: var(--white);
      border: 2px dashed var(--cream-dark);
      border-radius: 20px;
      margin-top: 8px;
    }
    .nes-icon { font-size: 3.5rem; margin-bottom: 18px; line-height: 1; }
    .nes-title { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 10px; }
    .nes-desc { font-size: .9rem; color: var(--text-soft); line-height: 1.8; max-width: 420px; margin-bottom: 24px; }
    .nes-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--emerald); color: var(--white);
      padding: 10px 24px; border-radius: 30px;
      font-weight: 700; font-size: .85rem; text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .nes-btn:hover { background: var(--emerald-mid); transform: translateY(-2px); }

    /* SAMBUTAN */
    .sambutan-section {
      padding: 80px 5%; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #0d3d2b 0%, #1a5c45 60%, #0f4a36 100%);
    }
    .sambutan-section::before {
      content:''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(201,151,58,.03) 60px, rgba(201,151,58,.03) 61px);
    }
    .sambutan-section::after {
      content:''; position: absolute; bottom: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(201,151,58,.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .sambutan-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .sambutan-text .section-label h2 { color: var(--white); }
    .sambutan-text .section-label .sub { color: rgba(255,255,255,.4); }
    .sambutan-quote { font-family: 'Amiri', serif; font-size: 1.9rem; color: var(--gold-lt); direction: rtl; text-align: right; margin: 24px 0 8px; line-height: 1.6; }
    .sambutan-quote-src { text-align: right; font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: 24px; }
    .sambutan-body { font-size: .95rem; color: rgba(255,255,255,.78); line-height: 1.9; margin-bottom: 28px; }
    .sambutan-signature { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); }
    .sig-avatar {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Amiri', serif; font-size: 1.5rem; color: var(--emerald); font-weight: 700; flex-shrink: 0;
    }
    .sig-name { font-family: 'Lora', serif; font-size: 1rem; color: var(--white); font-weight: 600; }
    .sig-role { font-size: .75rem; color: var(--gold-lt); margin-top: 2px; }
    .pengurus-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .pk-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px; padding: 22px 20px; text-align: center; transition: background .3s, transform .3s;
    }
    .pk-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
    .pk-avatar {
      width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 12px;
      border: 3px solid rgba(201,151,58,.4); display: flex; align-items: center; justify-content: center;
      font-family: 'Lora', serif; font-size: 1.6rem; color: var(--gold-lt); background: rgba(201,151,58,.1);
    }
    .pk-name { font-family: 'Lora', serif; font-size: .95rem; color: var(--white); margin-bottom: 4px; }
    .pk-role { font-size: .72rem; color: var(--gold-lt); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
    .pk-divider { width: 30px; height: 1px; background: rgba(201,151,58,.4); margin: 0 auto 10px; }
    .pk-bio { font-size: .77rem; color: rgba(255,255,255,.5); line-height: 1.6; }

    /* FOOTER */
    footer { background: #0a2a1e; color: rgba(255,255,255,.7); padding: 60px 5% 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-brand .nav-title { font-size: 1.3rem; }
    .footer-brand p { margin-top: 16px; font-size: .84rem; line-height: 1.8; color: rgba(255,255,255,.5); }
    .footer-social { display: flex; gap: 10px; margin-top: 20px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; cursor: pointer; transition: background .2s, border-color .2s;
      text-decoration: none; color: rgba(255,255,255,.7);
    }
    .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--emerald); }
    .footer-col h4 {
      font-family: 'Lora', serif; font-size: .95rem; color: var(--white);
      margin-bottom: 18px; position: relative; padding-bottom: 10px;
    }
    .footer-col h4::after {
      content:''; position: absolute; bottom:0; left:0;
      width: 28px; height: 2px; background: var(--gold); border-radius: 1px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 6px; }
    .footer-col ul li a::before { content: '›'; color: var(--gold); }
    .footer-col ul li a:hover { color: var(--gold-lt); }
    .footer-contact { font-size: .83rem; }
    .fc-item { display: flex; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }
    .fc-icon { width: 30px; height: 30px; background: rgba(201,151,58,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: .4; }
    }
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .carousel-slide { min-width: calc(50% - 10px); }
      .sambutan-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-deco { display: none; }
    }
    @media (max-width: 600px) {
      .news-grid { grid-template-columns: 1fr; }
      .carousel-slide { min-width: 100%; }
      .pengurus-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero h1 { font-size: 2rem; }
      .hero-stats { display: none; }
    }