  :root {
    --navy: #FFFFFF;
    --navy-mid: #F8F9FA;
    --gold: #008000;
    --gold-light: #FFFF00;
    --cream: #FFFFFF;
    --text: #212529;
    --muted: #6B7280;
    --border: #E9ECEF;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #FF0000;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,128,0,0.12);
    --shadow-lg: 0 12px 48px rgba(0,128,0,0.18);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); min-height: 100vh; overflow-x: hidden; line-height: 1.6; }

  /* ─── LAYOUT VIEWS ─── */
  .view { display: none; }
  .view.active { display: block; }

  /* ─── NAVBAR ─── */
  .navbar {
    position: sticky; top: 0; z-index: 100;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0,128,0,0.1);
    padding: 1rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    height: auto; min-height: 80px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }
  .navbar:hover { 
    box-shadow: 0 8px 32px rgba(0,128,0,0.12);
    border-bottom-color: rgba(0,128,0,0.15);
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 800;
    background: linear-gradient(135deg, #006400 0%, #008000 50%, #00AA00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 0.85rem; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }
  .nav-brand:hover { transform: translateY(-2px); }
  .nav-brand img { 
    height: 48px; width: auto; border-radius: 10px; transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0 6px 16px rgba(0,128,0,0.18), 0 2px 4px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(0,128,0,0.12);
  }
  .nav-brand:hover img { 
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0,128,0,0.25), 0 3px 8px rgba(0,0,0,0.12);
    border-color: rgba(0,128,0,0.2);
  }
  .nav-links { display: flex; gap: 0.3rem; align-items: center; }
  .nav-links a {
    color: var(--text); text-decoration: none;
    padding: 0.65rem 1.3rem; border-radius: 10px; font-size: 0.95rem; font-weight: 500;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); cursor: pointer;
    position: relative; overflow: hidden;
    border: 1.5px solid transparent;
  }
  .nav-links a::before { 
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(135deg, rgba(0,128,0,0.08) 0%, rgba(0,170,0,0.03) 100%);
    opacity: 0; transition: opacity 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    pointer-events: none;
  }
  .nav-links a:hover::before { opacity: 1; }
  .nav-links a::after { 
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; 
    background: linear-gradient(90deg, #008000, #00AA00); 
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); 
    transform: translateX(-50%);
  }
  .nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
  .nav-links a:hover, .nav-links a.active { 
    color: #006400; 
    background: rgba(0,128,0,0.1);
    border-color: rgba(0,128,0,0.15);
  }
  .nav-cta {
    background: linear-gradient(135deg, #FFFF00 0%, #FFFF66 100%) !important; 
    color: #000000 !important;
    font-weight: 700 !important; border-radius: 10px !important; 
    padding: 0.7rem 1.8rem !important;
    box-shadow: 0 6px 18px rgba(255,255,0,0.35), 0 2px 6px rgba(0,0,0,0.08) !important;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) !important;
    border: 1.5px solid rgba(255,255,0,0.25) !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }
  .nav-cta::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.3s;
  }
  .nav-cta:hover { 
    background: linear-gradient(135deg, #FFFF66 0%, #FFFF99 100%) !important; 
    transform: translateY(-3px) scale(1.04) !important; 
    box-shadow: 0 12px 32px rgba(255,255,0,0.4), 0 4px 10px rgba(0,0,0,0.12) !important;
    border-color: rgba(255,255,0,0.4) !important;
  }
  .nav-cta:hover::before { opacity: 1; }
  .nav-cta:active { transform: translateY(-1px) scale(0.98) !important; }

  /* ─── HAMBURGER MENU ─── */
  .nav-toggle {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none;
    padding: 0.6rem; transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); position: relative;
    width: 48px; height: 48px; align-items: center; justify-content: center;
  }
  .nav-toggle::before {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0,128,0,0.06) 0%, rgba(0,170,0,0.02) 100%);
    border: 1.5px solid rgba(0,128,0,0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0,128,0,0.08);
  }
  .nav-toggle:hover::before {
    opacity: 1;
    transform: scale(1.08);
    border-color: rgba(0,128,0,0.2);
    box-shadow: 0 6px 16px rgba(0,128,0,0.12);
  }
  .nav-toggle span {
    width: 24px; height: 2.5px; background: linear-gradient(90deg, #006400, #008000); border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    position: relative;
    box-shadow: 0 1px 4px rgba(0,128,0,0.2);
  }
  .nav-toggle span:nth-child(2) {
    width: 20px;
  }
  .nav-toggle:hover span {
    box-shadow: 0 2px 8px rgba(0,128,0,0.3);
    background: linear-gradient(90deg, #008000, #00AA00);
  }
  .nav-toggle.active span:nth-child(1) { 
    transform: rotate(45deg) translateY(9px);
    width: 24px;
  }
  .nav-toggle.active span:nth-child(2) { 
    opacity: 0;
    transform: translateX(-10px);
  }
  .nav-toggle.active span:nth-child(3) { 
    transform: rotate(-45deg) translateY(-9px);
    width: 24px;
  }
  
  /* Mobile menu item icons */
  .nav-links a::before {
    display: none;
  }

  /* ─── NEWS SECTION (BERITA GRID) ─── */
  .news-section {
    padding: 5rem 2.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  }
  
  .news-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .news-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  
  .news-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* Grid Layout 3 Kolom */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Responsive untuk tablet dan mobile */
  @media (min-width: 768px) {
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .news-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }
  
  /* Kartu Berita - Dimensi Seragam */
  .news-card {
    display: flex;
    flex-direction: column;
    height: 480px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 128, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(0, 128, 0, 0.08);
  }
  
  .news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 128, 0, 0.15);
    border-color: rgba(0, 128, 0, 0.2);
  }
  
  /* Gambar Card - Aspek Rasio 16:9 dengan Object-fit Cover */
  .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.1) 0%, rgba(0, 170, 0, 0.05) 100%);
  }
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .news-card:hover .news-image img {
    transform: scale(1.08);
  }
  
  /* Content Area - Padding Konsisten */
  .news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    gap: 0.75rem;
  }
  
  /* Kategori Badge */
  .news-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #006400;
    background: rgba(0, 128, 0, 0.12);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    width: fit-content;
  }
  
  /* Judul Berita - Hierarki Visual dengan Truncate */
  .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin: 0.5rem 0;
    
    /* Ellipsis untuk 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
  }
  
  /* Ringkasan Berita - Font Lebih Kecil */
  .news-excerpt {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    
    /* Ellipsis untuk 3 baris */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Meta Information - Tanggal & Author */
  .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 128, 0, 0.08);
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: auto;
  }
  
  .news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .news-author {
    font-weight: 600;
    color: #008000;
  }
  
  /* Read More Link */
  .news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #008000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .news-link:hover {
    gap: 0.8rem;
    color: #006400;
  }
  
  .news-link::after {
    content: '→';
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .news-card:hover .news-link::after {
    transform: translateX(4px);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.25) 0%, rgba(0, 93, 0, 0.3) 30%, rgba(0, 170, 0, 0.25) 60%, rgba(0, 119, 0, 0.2) 100%), 
                url('https://raw.githubusercontent.com/vikrialhusna221-lang/STORAGE/main/WhatsApp%20Image%202026-02-23%20at%2021.05.08.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 6rem 2rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 20%, rgba(255,255,0,0.3) 0%, transparent 60%);
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
  }
  @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(255,255,255,0.25); border: 1.5px solid rgba(255,255,0,0.6);
    color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 0.55rem 1.4rem; border-radius: 99px; margin-bottom: 2rem; text-transform: uppercase;
    animation: fadeUp .7s ease both; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
  }
  .hero-badge:hover { background: rgba(255,255,255,0.35); border-color: rgba(255,255,0,0.9); transform: translateY(-3px); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800;
    color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
    animation: fadeUp .8s .1s ease both;
    text-shadow: 0 6px 24px rgba(0,0,0,0.25);
    letter-spacing: -0.015em;
  }
  .hero h1 em { color: #FFFF00; font-style: normal; font-weight: 700; }
  .hero p {
    max-width: 680px; color: rgba(255,255,255,0.98); font-size: 1.2rem;
    line-height: 1.8; margin-bottom: 2.5rem;
    animation: fadeUp .8s .2s ease both;
    font-weight: 400;
    text-shadow: 0 3px 12px rgba(0,0,0,0.15);
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp .7s .3s ease both; position: relative; z-index: 20; }
  .btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 2rem; border-radius: 12px;
    font-weight: 650; font-size: 0.98rem; cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); border: none; text-decoration: none;
    position: relative; overflow: hidden; outline: none; letter-spacing: 0.3px;
  }
  .btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.2); opacity: 0; transition: opacity .3s; pointer-events: none; }
  .btn:hover::before { opacity: 1; }
  .btn:active { transform: scale(0.98); }
  .btn:focus { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }
  .btn-primary { background: linear-gradient(135deg, var(--gold-light) 0%, #FFFF00 100%); color: #000000; box-shadow: 0 6px 20px rgba(255,255,0,0.4); }
  .btn-primary:hover { background: linear-gradient(135deg, #FFFF00 0%, var(--gold-light) 100%); transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(255,255,0,0.5); }
  .btn-primary:active { transform: scale(0.97) translateY(-2px); box-shadow: 0 4px 12px rgba(255,255,0,0.4); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
  .btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,255,0,0.25); }
  .stats-row {
    display: flex; gap: 3.5rem; margin-top: 5.5rem; padding-top: 3.5rem;
    border-top: 1.5px solid rgba(255,255,255,0.3);
    animation: fadeUp .8s .4s ease both;
    justify-content: center; flex-wrap: wrap;
  }
  .stat-item { text-align: center; animation: fadeUp .6s ease-out both; }
  .stat-item:nth-child(1) { animation-delay: .2s; }
  .stat-item:nth-child(2) { animation-delay: .3s; }
  .stat-item:nth-child(3) { animation-delay: .4s; }
  .stat-item:nth-child(4) { animation-delay: .5s; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: #FFFF00; transition: all .3s; }
  .stat-item:hover .stat-num { transform: scale(1.2); }
  .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.4rem; font-weight: 600; }

  /* ─── SECTION ─── */
  .section { padding: 7rem 2rem; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
  .section:nth-child(odd) { background: linear-gradient(180deg, #FFFFFF 0%, rgba(0,128,0,0.02) 100%); }
  .section-inner { max-width: 1300px; margin: 0 auto; padding: 0 1.5rem; }
  .section-header { margin-bottom: 4rem; text-align: center; animation: fadeUp .6s ease-out; }
  .section-tag {
    font-family: 'DM Mono', monospace; font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
    display: inline-flex; align-items: center; gap: 0.75rem; justify-content: center; width: 100%;
    animation: slideInRight .6s ease-out; font-weight: 700;
  }
  .section-tag::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
  .section-tag::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
  .section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 800; color: var(--text); transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); margin-bottom: 1.5rem; }
  .section-header:hover h2 { color: var(--gold); transform: translateX(4px); }
  .section-header p { color: var(--muted); margin-top: 1.5rem; max-width: 680px; line-height: 1.8; font-size: 1.05rem; margin-left: auto; margin-right: auto; }

  /* ─── CARDS ─── */
  .grid { 
    display: grid; 
    gap: 3.5rem; 
    animation: fadeUp .6s ease-out both;
    align-items: start;
  }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  .grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
  .card {
    background: var(--white); border-radius: 18px;
    border: 2px solid rgba(0,128,0,0.18);
    overflow: hidden; transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer; position: relative;
    box-shadow: 0 12px 40px rgba(0,128,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
  }
  .card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,128,0,0.12) 0%, transparent 100%); opacity: 0; transition: opacity .4s; pointer-events: none; z-index: 1; }
  .card:hover { transform: translateY(-16px); box-shadow: 0 40px 80px rgba(0,128,0,0.25), 0 4px 12px rgba(0,0,0,0.12); border-color: rgba(0,128,0,0.35); }\n  .card:hover::after { opacity: 1; }
  .card-img {
    width: 100%; height: 260px; overflow: hidden;
    background: linear-gradient(135deg, #008000 0%, #00AA00 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 4rem;
    transition: all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }
  .card-img img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .card:hover .card-img img { transform: scale(1.08); }
  .card-body { 
    padding: 1.75rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .card-meta { font-size: .78rem; color: var(--muted); margin-bottom: 0.75rem; display: flex; gap: .75rem; flex-wrap: wrap; }
  .card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.85rem; line-height: 1.5; color: var(--text); }
  .card-excerpt { 
    font-size: 0.92rem; 
    color: var(--muted); 
    line-height: 1.7; 
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .tag {
    display: inline-block; background: linear-gradient(135deg, rgba(0,128,0,0.2), rgba(0,170,0,0.1));
    color: #006400; font-size: 0.75rem; font-weight: 800;
    padding: 0.4rem 0.95rem; border-radius: 8px; letter-spacing: 0.08em; text-transform: uppercase;
    white-space: nowrap; border: 1px solid rgba(0,128,0,0.3);
  }

  /* ─── HORIZONTAL CARD VARIANT ─── */
  /* 
    USAGE: Add class="card-horizontal" to .card elements to display layout horizontally
    IMAGE: 35% width (left) | CONTENT: 65% width (right)
    RESPONSIVE: Automatically reverts to vertical on mobile devices (≤768px)
    EXAMPLE: <div class="card card-horizontal"> ... </div>
    
    Typical usage patterns:
    1. Alternate: <div class="card ${idx % 2 === 1 ? 'card-horizontal' : ''}">
    2. Every third: <div class="card ${idx % 3 === 2 ? 'card-horizontal' : ''}">
    3. Manual: specifically add class to desired cards
  */
  .card-horizontal {
    flex-direction: row !important;
    align-items: stretch;
  }
  .card-horizontal .card-img {
    width: 38% !important;
    height: auto !important;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .card-horizontal .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card-horizontal .card-body {
    width: 62% !important;
    padding: 1.75rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card-horizontal .card-meta {
    margin-bottom: 0.75rem;
  }
  .card-horizontal .card-title { 
    font-size: 1.1rem; 
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-horizontal .card-excerpt { 
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }
  .card-horizontal:hover { transform: translateX(-14px) translateY(-12px); }
  .card-horizontal:hover .card-img img { transform: scale(1.08); }

  /* ─── ACHIEVEMENT CARD ─── */
  .ach-card {
    background: var(--white); border-radius: 16px; padding: 2.25rem;
    border: 1.5px solid rgba(0,128,0,0.08); display: flex; gap: 1.75rem;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
    position: relative; overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  }
  .ach-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,128,0,0.1) 0%, transparent 100%); opacity: 0; transition: opacity .4s; pointer-events: none; }
  .ach-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: 0 32px 64px rgba(0,128,0,0.28); border-color: rgba(0,128,0,0.3); }
  .ach-card:hover::before { opacity: 1; }
  .ach-icon {
    width: 80px; height: 80px; min-width: 80px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light) 0%, #FFFF00 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; color: #000000;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 28px rgba(255,255,0,0.35);
  }
  .ach-card:hover .ach-icon { transform: scale(1.15) rotate(-10deg); box-shadow: 0 14px 40px rgba(255,255,0,0.45); }
  .ach-year { font-family: 'DM Mono', monospace; font-size: .75rem; color: var(--gold); font-weight: 500; margin-bottom: .3rem; }
  .ach-title { font-weight: 700; margin-bottom: 0.45rem; line-height: 1.45; color: var(--text); font-size: 1.05rem; }
  .ach-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

  /* ─── ABOUT ─── */
  .about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; animation: fadeUp .7s ease-out; }
  .about-visual {
    background: linear-gradient(135deg, var(--gold) 0%, #005d00 50%, #00AA00 100%);
    border-radius: 20px;
    padding: 3.75rem;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    box-shadow: 0 24px 72px rgba(0,128,0,0.35);
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .about-visual {
      padding: 2.5rem 1.75rem;
      gap: 1.75rem;
      border-radius: 16px;
    }
  }
  @media (max-width: 480px) {
    .about-visual {
      padding: 2rem 1.25rem;
      gap: 1.5rem;
    }
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
  }
  .about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: var(--white);
    line-height: 1.6;
    border-left: 4px solid rgba(255,255,0,0.8);
    padding-left: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  @media (max-width: 768px) {
    .about-quote {
      font-size: 1.3rem;
      padding-left: 1.25rem;
      line-height: 1.5;
    }
  }
  @media (max-width: 480px) {
    .about-quote {
      font-size: 1.1rem;
      padding-left: 1rem;
      border-left-width: 3px;
    }
  }
  .about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .stat-box {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
  }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
  }
  .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  @media (max-width: 768px) {
    .about-stats {
      gap: 1.5rem;
      margin-top: 1.25rem;
    }
    .stat-box {
      padding: 0.875rem;
      border-radius: 10px;
      min-width: 100px;
    }
    .stat-number {
      font-size: 1.75rem;
    }
    .stat-label {
      font-size: .75rem;
    }
  }
  @media (max-width: 480px) {
    .about-stats {
      gap: 1rem;
      justify-content: space-between;
    }
    .stat-box {
      flex: 1 1 calc(33.333% - 0.67rem);
      padding: 0.75rem 0.5rem;
      gap: 0.35rem;
    }
    .stat-number {
      font-size: 1.5rem;
    }
    .stat-label {
      font-size: .7rem;
    }
  }
  .value-item { display: flex; align-items: flex-start; gap: .75rem; }
  .value-dot { width: 8px; height: 8px; min-width: 8px; background: var(--gold); border-radius: 50%; margin-top: .35rem; }

  /* ─── STRUKTUR ORGANISASI ─── */
  .struktur-section { animation: fadeUp .7s ease-out; }
  .struktur-card { transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); }
  .struktur-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,128,0,0.15); }
  .bidang-card { background: var(--white); padding: 1.75rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); }
  .bidang-card:hover { box-shadow: 0 12px 36px rgba(0,128,0,0.12); transform: translateY(-2px); }

  /* ─── CONTACT ─── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; animation: fadeUp .7s ease-out; }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-item { display: flex; gap: 1.25rem; align-items: flex-start; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); }
  .contact-item:hover { transform: translateX(6px); }
  .contact-icon {
    width: 50px; height: 50px; min-width: 50px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #00AA00); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 6px 18px rgba(0,128,0,0.3);
  }
  .contact-item:hover .contact-icon { transform: scale(1.18) rotate(-12deg); box-shadow: 0 10px 28px rgba(0,128,0,0.4); }
  .contact-form { background: var(--white); border-radius: 18px; padding: 2.75rem; border: 1.5px solid rgba(0,128,0,0.08); box-shadow: 0 12px 36px rgba(0,0,0,0.08); transition: all .3s; }
  .contact-form:hover { box-shadow: 0 18px 48px rgba(0,128,0,0.15); transform: translateY(-4px); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
  .form-group label { font-size: .85rem; font-weight: 500; color: var(--text); }
  /* ─── INPUT FORMS ─── */
  .form-group input, .form-group textarea, .form-group select {
    padding: 0.85rem 1.2rem; border: 2px solid #E0E0E0; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
    background: #FAFBFF; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    resize: vertical; font-weight: 500;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--gold); background: var(--white);
    box-shadow: 0 0 0 5px rgba(0,128,0,0.12); transform: scale(1.01);
  }
  .form-group input::placeholder, .form-group textarea::placeholder {
    color: #9CA3AF; transition: color .3s;
  }

  /* ─── FOOTER ─── */
  footer {
    background: linear-gradient(135deg, #008000 0%, #005d00 50%, #006400 100%); color: var(--white);
    padding: 2.5rem 1.5rem 1.5rem; text-align: center;
    border-top: 2px solid rgba(0,128,0,0.15); transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  footer:hover { background: linear-gradient(135deg, #006400 0%, #008000 100%); }
  footer .brand { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; margin-bottom: .5rem; transition: all .3s; }
  footer:hover .brand { transform: scale(1.05); }
  footer small { display: block; margin-top: 1.5rem; font-size: .78rem; opacity: .8; }

  /* ─── DETAIL PAGE ─── */
  .detail-hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%); padding: 4.5rem 2rem 3.5rem;
    text-align: center; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .detail-hero:hover { background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%); }
  .detail-hero h1 { font-family: 'Playfair Display', serif; color: #2F2F2F; font-size: clamp(1.6rem, 3vw, 2.5rem); max-width: 800px; margin: 0 auto 1rem; }
  .detail-hero .meta { color: var(--gold); font-size: .9rem; }
  .detail-content { max-width: 760px; margin: 0 auto; padding: 3rem 2rem; }
  .detail-content p { line-height: 1.8; color: var(--text); margin-bottom: 1.25rem; }
  .detail-img {
    width: 100%; height: 360px; background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F6 100%);
    border-radius: 16px; margin-bottom: 2rem; display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(0,128,0,0.15);
    overflow: hidden; position: relative;
  }
  .detail-img img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 16px; display: block;
  }
  .back-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--gold); cursor: pointer; font-weight: 500; margin-bottom: 2rem;
    background: none; border: none; font-family: 'DM Sans', sans-serif;
    font-size: .95rem; transition: gap .2s;
  }
  .back-btn:hover { gap: .75rem; }

  /* ═══════════════════════════════════════
     ADMIN DASHBOARD
  ═══════════════════════════════════════ */
  .admin-shell { display: flex; min-height: 100vh; background: linear-gradient(135deg, #F5F7F6 0%, #F0F4F3 100%); flex-wrap: nowrap; width: 100%; }
  .admin-sidebar {
    width: 220px; min-width: 220px; max-width: 220px;
    background: linear-gradient(180deg, #0a3d0a 0%, #1a5c1a 100%);
    display: flex; flex-direction: column; align-items: stretch;
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
    border-right: 2px solid rgba(255,255,0,0.2);
    transition: width 0.3s ease, min-width 0.3s ease, max-width 0.3s ease;
    z-index: 100;
    box-shadow: 4px 0 12px rgba(0,128,0,0.15);
    padding: 1rem 0;
  }
  .sidebar-brand {
    padding: 1.2rem 1rem;
    border-bottom: 2px solid rgba(255,255,0,0.3);
    text-align: left;
    width: 100%;
  }
  .sidebar-brand .logo {
    font-family: 'Playfair Display', serif;
    color: #FFFF00;
    font-size: 0.85rem; font-weight: 800;
    display: block;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }
  .sidebar-brand .sub { 
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    font-weight: 500;
  }
  .sidebar-nav { padding: 1rem 0; flex: 1; width: 100%; }
  .sidebar-section {
    padding: 0.8rem 1rem 0.4rem;
    font-size: 0.7rem;
    display: block;
    color: #FFFF00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,0,0.2);
    margin: 0.5rem 1rem;
  }
  .sidebar-link {
    padding: 0.75rem 1rem; gap: 0.6rem; font-size: 0.9rem;
    width: 100%; justify-content: flex-start;
    display: flex; align-items: center;
    border-left: 3px solid transparent; border-bottom: none;
    position: relative;
    color: rgba(255,255,255,0.8);
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
  }
  .sidebar-link:hover {
    transform: translateX(4px);
    background: rgba(0,255,0,0.15);
    border-left-color: #FFFF00;
    color: #FFFF00;
  }
  .sidebar-link.active {
    border-left-color: #FFFF00;
    background: rgba(0,255,0,0.25);
    color: #FFFF00;
  }
  .sidebar-link .icon { 
    width: 20px; height: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
    font-size: 0; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sidebar-link:hover .icon { transform: scale(1.1) rotate(-3deg); }
  .sidebar-link.active .icon { transform: scale(1.08) rotate(2deg); }
  .sidebar-link-text { 
    display: inline;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .sidebar-link[data-tooltip] {
    position: relative;
  }
  .sidebar-link[data-tooltip]::after {
    display: none;
  }
  .sidebar-link:hover::after {
    display: none;
  }
  .sidebar-footer {
    padding: 0.5rem 0.3rem;
    width: 100%;
    border-top: 1px solid rgba(0,200,0,0.1);
  }
  .logout-btn {
    margin: 0 1rem; width: calc(100% - 2rem); padding: 0.7rem 1rem;
    background: rgba(220,38,38,0.2);
    border: 1.5px solid rgba(220,38,38,0.4);
    color: #ff9aa2;
    border-radius: 8px;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
  }
  .logout-btn:hover {
    background: rgba(220,38,38,0.35);
    border-color: rgba(220,38,38,0.6);
    transform: translateX(-2px);
  }
  .logout-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220,38,38,0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 0.85rem;
    z-index: 1000;
    margin-left: 0.5rem;
  }
  .logout-btn:hover::after {
    opacity: 1;
  }

  .admin-main { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    min-width: 0; 
    transition: all 0.3s ease; 
    width: calc(100% - 220px);
    position: relative;
  }
  .admin-topbar {
    background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0.95) 100%);
    padding: 1.25rem 2rem;
    border-bottom: 2px solid rgba(0,200,0,0.15);
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 10;
    box-shadow: 0 8px 24px rgba(0,128,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
  }
  .topbar-title {
    font-weight: 800; font-size: 1.25rem;
    background: linear-gradient(135deg, #006400 0%, #008000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
  }
  .topbar-user { display: flex; align-items: center; gap: 0.9rem; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
  .avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #000000; font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,200,0,0.2);
    transition: all 0.3s ease;
  }
  .avatar:hover { transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,200,0,0.3); }
  .admin-content { 
    padding: 2rem; 
    flex: 1; 
    width: 100%; 
    overflow-x: hidden;
    position: relative;
  }
  .admin-panel { 
    display: none !important; 
    visibility: hidden !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .admin-panel.active { 
    display: block !important;
    visibility: visible !important;
    position: relative;
    pointer-events: auto;
    opacity: 1;
    animation: fadeIn 0.3s ease;
  }

  /* STATS */
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
  .stat-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.95) 100%);
    border-radius: 16px; padding: 2rem 1.75rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    display: flex; flex-direction: column; gap: 0.8rem;
    transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default; position: relative; overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,128,0,0.08);
  }
  .stat-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,200,0,0.08) 0%, rgba(255,255,0,0.04) 100%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
  }
  .stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,200,0,0.2) 0%, rgba(255,255,0,0.1) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
  }
  .stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,128,0,0.18), 0 0 20px rgba(0,200,0,0.1);
  }
  .stat-card:hover::before { opacity: 1; }
  .stat-card:hover::after { opacity: 1; }
  .stat-card .label { font-size: .75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
  .stat-card .value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all .4s;
  }
  .stat-card:hover .value { transform: scale(1.12); }
  .stat-card .trend { font-size: 0.75rem; color: var(--success); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
  .stat-card .icon {
    font-size: 2rem; margin-bottom: 0.5rem;
    transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0,200,0,0.1));
  }
  .stat-card:hover .icon { transform: scale(1.3) rotate(12deg) translateY(-4px); }

  /* TABLE */
  .table-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.97) 100%);
    border-radius: 16px;
    border: 2px solid rgba(0,200,0,0.1);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,128,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
  }
  .table-header {
    padding: 1.75rem 1.75rem;
    border-bottom: 2px solid rgba(0,200,0,0.12);
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(90deg, rgba(0,200,0,0.05) 0%, rgba(255,255,0,0.03) 100%);
  }
  .table-header h3 {
    font-weight: 800; font-size: 1.1rem;
    background: linear-gradient(135deg, #006400 0%, #008000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  table { width: 100%; border-collapse: collapse; }
  th {
    background: linear-gradient(90deg, rgba(0,200,0,0.08) 0%, rgba(255,255,0,0.04) 100%);
    padding: 1rem 1.35rem;
    text-align: left; font-size: 0.75rem; font-weight: 800;
    color: #006400;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-bottom: 2px solid rgba(0,200,0,0.15);
  }
  td { padding: 1.1rem 1.35rem; font-size: 0.9rem; border-bottom: 1px solid rgba(0,128,0,0.06); vertical-align: middle; transition: all 0.3s ease; }
  tr:last-child td { border-bottom: none; }
  tr:hover td { background: linear-gradient(90deg, rgba(0,200,0,0.05) 0%, rgba(255,255,0,0.02) 100%); }
  .td-img { width: 44px; height: 44px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #000000; font-weight: 700; }
  .td-title { font-weight: 700; color: var(--text); font-size: 0.95rem; }
  .td-sub { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
  .status-badge {
    display: inline-block; padding: 0.45rem 1rem; border-radius: 99px;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0,128,0,0.15);
    border: 1px solid rgba(0,200,0,0.2);
  }
  .status-badge:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 16px rgba(0,128,0,0.2); }
  .badge-green {
    background: linear-gradient(135deg, #dffaf2 0%, #d1f7e5 100%);
    color: #0a6741;
    border-color: rgba(10,103,65,0.2);
  }
  .badge-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef3ba 100%);
    color: #a16207;
    border-color: rgba(161,98,7,0.2);
  }
  .action-btns { display: flex; gap: .5rem; }
  .btn-icon {
    width: 36px; height: 36px;
    border: 2px solid rgba(0,200,0,0.2);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.95) 100%);
    border-radius: 10px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,128,0,0.08);
  }
  .btn-icon:hover {
    background: linear-gradient(135deg, rgba(0,200,0,0.1) 0%, rgba(255,255,0,0.05) 100%);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,200,0,0.15);
    border-color: rgba(0,200,0,0.4);
  }
  .btn-icon.delete:hover {
    background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(220,38,38,0.05) 100%);
    border-color: rgba(220,38,38,0.4);
    box-shadow: 0 6px 16px rgba(220,38,38,0.15);
  }
  .btn-icon.edit:hover {
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(59,130,246,0.05) 100%);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 6px 16px rgba(59,130,246,0.15);
  }

  /* MODAL */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px); z-index: 1000;
    display: none; align-items: center; justify-content: center; padding: 2rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--white); border-radius: 18px; width: 100%; max-width: 580px;
    max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: modalIn .3s ease;
  }
  .modal-head { padding: 1.75rem; border-bottom: 1.5px solid rgba(0,128,0,0.08); display: flex; align-items: center; justify-content: space-between; }
  .modal-head h3 { font-weight: 700; color: var(--text); font-size: 1.15rem; }
  .modal-close { width: 36px; height: 36px; border: none; background: #EEF2FF; border-radius: 10px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1); }
  .modal-close:hover { background: rgba(0,128,0,0.2); transform: rotate(90deg) scale(1.15); color: var(--gold); }
  .modal-body { padding: 1.75rem; }
  .modal-foot { padding: 1.25rem 1.75rem; border-top: 1px solid var(--border); display: flex; gap: .75rem; justify-content: flex-end; }
  .btn-sm { padding: 0.65rem 1.4rem; font-size: 0.9rem; border-radius: 10px; font-weight: 650; border: none; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; }
  .btn-gold { background: linear-gradient(135deg, var(--gold-light) 0%, #FFFF00 100%); color: #000000; box-shadow: 0 6px 18px rgba(255,255,0,0.3); font-weight: 700; }\n  .btn-gold:hover { background: linear-gradient(135deg, #FFFF00 0%, var(--gold-light) 100%); box-shadow: 0 10px 28px rgba(255,255,0,0.4); transform: translateY(-2px); }\n  .btn-ghost { background: #f0f2f7; color: var(--text); font-weight: 600; }\n  .btn-ghost:hover { background: #e5e7eb; transform: translateY(-2px); }\n  .btn-danger { background: #fee2e2; color: var(--danger); font-weight: 600; }\n  .btn-danger:hover { background: #fecaca; transform: translateY(-2px); }

  /* IMAGE UPLOAD */
  .upload-zone {
    border: 2.5px dashed rgba(0,128,0,0.3); border-radius: 12px; padding: 2.25rem;
    text-align: center; cursor: pointer; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,128,0,0.02);
  }
  .upload-zone:hover { border-color: var(--gold); background: rgba(0,128,0,0.08); transform: scale(1.02); }
  .upload-zone .upload-icon { font-size: 2rem; margin-bottom: .5rem; }
  .upload-zone p { font-size: .85rem; color: var(--muted); }

  /* GOOGLE OAUTH & REGISTRATION BUTTONS */
  .btn-google {
    background: #ffffff; color: #000000; border: 1.5px solid #e0e0e0;
    display: flex; align-items: center; justify-content: center; gap: 0.7rem;
    font-weight: 600; border-radius: 12px; padding: 0.95rem 1.1rem;
    cursor: pointer; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  }
  .btn-google:hover {
    background: #f8f8f8; border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }
  .btn-google:active { transform: translateY(0); }

  /* TAB STYLING */
  .tab-btn {
    position: relative; padding: 0.75rem 1.5rem;
    border: none; background: none; color: var(--muted);
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tab-btn:hover { color: var(--text); }
  .tab-btn.active {
    color: var(--gold); border-bottom-color: var(--gold) !important;
  }

  /* OTP INPUT STYLING */
  #member-otp {
    width: 100%; padding: 1.2rem 0.5rem;
    border: 2px solid rgba(0,128,0,0.2); border-radius: 12px;
    font-size: 1.5rem; letter-spacing: 0.3rem;
    text-align: center; font-family: 'DM Mono', monospace;
    background: #f8fafb; transition: all .3s ease;
  }
  #member-otp:focus {
    outline: none; border-color: var(--gold);
    background: #ffffff; box-shadow: 0 0 0 4px rgba(0,128,0,0.08);
  }

  /* LOGIN */
  .login-screen {
    min-height: 100vh; background: linear-gradient(135deg, var(--gold) 0%, #005d00 50%, #00AA00 100%);
    display: flex; align-items: center; justify-content: center; padding: 2rem;
    position: relative;
  }
  .login-screen::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
  }
  .login-container {
    display: flex; align-items: stretch; justify-content: center;
    width: 100%; max-width: 1050px; height: auto; min-height: 550px;
    background: transparent; border-radius: 24px;
    box-shadow: none; overflow: visible; animation: fadeUp .7s ease; 
    position: relative; z-index: 2; gap: 0;
  }
  .login-forms { 
    display: flex; width: 50%; position: relative; background: var(--white);
    border-radius: 0 24px 24px 0; box-shadow: 0 25px 80px rgba(0,0,0,0.2);
  }
  .login-form-side { 
    flex: 1; padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; 
    z-index: 2; animation: slideInRight .7s ease;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1; transform: translateX(0); width: 100%;
  }
  .login-form-side > div { display: flex; flex-direction: column; gap: 1rem; }
  .login-form-side .logo { 
    font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.35rem; 
    font-weight: 700; margin-bottom: .35rem; letter-spacing: 0.02em;
  }
  .login-form-side .sub { 
    color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; font-weight: 500;
  }

  /* OVERLAY PANEL */
  .login-overlay-panel {
    position: relative; width: 50%; height: auto; min-height: 550px;
    background: linear-gradient(135deg, var(--gold-light) 0%, #FFFF00 100%);
    z-index: 3; display: flex; align-items: center; justify-content: center;
    flex-direction: column; color: #000000; text-align: center;
    transition: transform .0s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3.5rem; overflow: hidden;
    border-radius: 24px 0 0 24px; box-shadow: 0 25px 80px rgba(0,0,0,0.2);
  }
  .login-overlay-panel::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.25) 0%, transparent 60%);
    pointer-events: none;
  }
  .login-overlay-panel > * { position: relative; z-index: 1; }
  .login-overlay-panel h3 { 
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; 
    margin-bottom: 0.8rem; opacity: 1; transition: opacity .3s ease; letter-spacing: 0.01em;
  }
  .login-overlay-panel p { 
    font-size: 1rem; opacity: 0.9; line-height: 1.7; margin-bottom: 2.5rem;
    transition: opacity .3s ease;
  }
  .login-overlay-panel.slide-right { transform: translateX(0); }
  .login-overlay-panel.slide-right h3 { animation: none; }
  .login-overlay-panel.slide-right p { animation: none; }

  .overlay-btn { 
    background: rgba(0,128,0,0.15); color: #000000;
    border: 2.5px solid rgba(0,128,0,0.5); padding: 0.85rem 2.5rem;
    border-radius: 12px; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em;
    opacity: 1; backdrop-filter: blur(10px);
  }
  .overlay-btn:hover { 
    background: rgba(0,128,0,0.3); transform: translateY(-4px); 
    box-shadow: 0 12px 32px rgba(0,128,0,0.3); border-color: rgba(0,128,0,1); 
  }
  .overlay-btn:active { transform: translateY(-1px); }

  .login-card {
    background: var(--white); border-radius: 20px; padding: 3.25rem;
    width: 100%; max-width: 440px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: fadeUp .6s ease; border: 1.5px solid rgba(0,128,0,0.08);
  }
  .login-card .logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.4rem; font-weight: 700; margin-bottom: .25rem; }
  .login-card .sub { color: var(--muted); font-size: .88rem; margin-bottom: 2rem; }
  .alert { 
    padding: .95rem 1.1rem; border-radius: 12px; font-size: .87rem; margin-bottom: 1.25rem;
    font-weight: 500; animation: slideInRight .4s ease;
  }
  .alert-error { background: #fee2e2; color: #991b1b; border: 1.5px solid #fecaca; }
  .alert-success { background: #dcfce7; color: #166534; border: 1.5px solid #bbf7d0; }

  /* FORM STYLING */
  .form-group { margin-bottom: 1.35rem; position: relative; }
  .form-group label { 
    display: block; margin-bottom: 0.7rem; font-weight: 600; color: var(--text); 
    font-size: 0.92rem; letter-spacing: 0.01em; transition: all .25s ease;
  }
  .form-group input, .form-group textarea { 
    width: 100%; padding: 0.95rem 1.1rem; border: 2px solid rgba(0,128,0,0.12);
    border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1); background: #f8fafb;
    position: relative; z-index: 1;
  }
  .form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(0,0,0,0.35); transition: color .25s ease;
  }
  .form-group input:hover, .form-group textarea:hover { 
    border-color: rgba(0,128,0,0.25); background: #ffffff;
  }
  .form-group input:focus, .form-group textarea:focus { 
    outline: none; border-color: var(--gold); background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0,128,0,0.08);
  }
  .form-group input:focus::placeholder { color: rgba(0,0,0,0.2); }
  .form-group input:invalid:not(:placeholder-shown) { border-color: var(--danger); }
  .form-group input:invalid:not(:placeholder-shown) ~ .error-msg { display: block; color: var(--danger); font-size: 0.8rem; margin-top: 0.4rem; animation: slideInRight .3s ease; }
  .error-msg { display: none; }
  
  /* Password visibility toggle */
  .password-toggle {
    position: absolute; right: 1rem; top: 2.5rem; 
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: 1rem; padding: 0.5rem;
    transition: all .25s ease; z-index: 2; display: flex; align-items: center;
  }
  .password-toggle:hover { color: var(--gold); transform: scale(1.15); }
  .password-toggle:active { transform: scale(0.95); }

  /* TOAST */
  .toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; }
  .toast {
    background: var(--navy); color: var(--text); padding: .75rem 1.25rem;
    border-radius: 10px; font-size: .88rem; font-weight: 500;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .75rem;
    animation: slideIn .3s ease; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid var(--gold);
  }
  .toast:hover { transform: translateX(-6px); box-shadow: 0 12px 36px rgba(0,128,0,0.25); }
  .toast.error { border-left-color: var(--danger); }
  .toast.success { border-left-color: var(--success); }

  /* ─── ANIMATIONS – Enhance – */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes slideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
  @keyframes slideInLeft { from { opacity: 0; transform: translateX(25px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }
  @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
  @keyframes heartbeat { 0%, 100% { transform: scale(1); } 25% { transform: scale(1.05); } 50% { transform: scale(1.1); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes modalIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
  @keyframes slideIn { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
  .card { animation: fadeUp .6s ease-out both; }
  .card:nth-child(2) { animation-delay: .1s; }
  .card:nth-child(3) { animation-delay: .2s; }
  .card:nth-child(n+4) { animation-delay: calc(.1s * (var(--index, 3) - 2)); }

  /* PAGINATION */
  .pagination { 
    display: flex; 
    gap: 0.75rem; 
    justify-content: center; 
    margin-top: 4rem;
    flex-wrap: wrap;
  }
  .page-btn {
    width: 40px; 
    height: 40px; 
    border: 2px solid rgba(0,128,0,0.2);
    background: var(--white); 
    border-radius: 10px; 
    cursor: pointer;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.9rem;
    font-weight: 600;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .page-btn:hover { 
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(0,128,0,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,128,0,0.15);
  }
  .page-btn.active { 
    background: linear-gradient(135deg, var(--gold), #FFFF00);
    color: #000000;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(255,255,0,0.3);
    transform: translateY(-3px);
  }

  /* LOADING SKELETON */
  .skeleton { background: linear-gradient(90deg, #f0f2f7 25%, #e5e7eb 50%, #f0f2f7 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
  @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  /* ═══════════════════════════════════════
     MEMBER DASHBOARD & CALENDAR
  ═══════════════════════════════════ */
  .member-shell { display: flex; min-height: 100vh; background: #F5F7F6; }
  .member-sidebar {
    width: 240px; min-width: 240px;
    background: #1a1a2e; display: flex; flex-direction: column;
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
    border-right: 1px solid rgba(0,128,0,0.1);
  }
  .member-topbar {
    background: var(--white); padding: 1.25rem 2rem;
    border-bottom: 1.5px solid rgba(0,128,0,0.08);
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .member-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
  .member-content { padding: 2rem; flex: 1; }
  .member-panel { display: none; }
  .member-panel.active { display: block; }

  /* CALENDAR STYLES */
  .calendar-container { background: var(--white); border-radius: 16px; border: 2px solid rgba(0,128,0,0.12); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
  .calendar-header { background: linear-gradient(135deg, #008000 0%, #00AA00 100%); color: var(--white); padding: 2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid rgba(0,128,0,0.2); }
  .calendar-nav { display: flex; gap: 2rem; align-items: center; justify-content: center; width: 100%; }
  .calendar-nav button { background: rgba(255,255,255,0.25); color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); padding: 0.7rem 1.5rem; border-radius: 10px; cursor: pointer; font-weight: 700; transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1); font-size: 0.95rem; }
  .calendar-nav button:hover { background: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
  .calendar-nav button:active { transform: translateY(-1px); }
  .calendar-month { font-size: 1.6rem; font-weight: 800; min-width: 280px; text-align: center; letter-spacing: -0.01em; }
  .calendar-body { padding: 2rem; }
  .calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
  .calendar-weekday { text-align: center; font-weight: 800; color: #006400; font-size: 0.9rem; padding: 0.75rem 0; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid rgba(0,128,0,0.2); }
  .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem; }
  .calendar-day { aspect-ratio: 1 / 1.1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 12px; cursor: pointer; font-size: 1rem; font-weight: 700; transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1); border: 2px solid transparent; background: #FAFBFF; color: #212529; position: relative; }
  .calendar-day.empty { background: #F5F7F6; color: var(--muted); cursor: default; border: 2px solid transparent; }
  .calendar-day.other { background: #F5F7F6; color: var(--muted); border: 2px solid rgba(0,128,0,0.1); }
  .calendar-day.today { background: linear-gradient(135deg, #FFEB3B 0%, #FDD835 100%); color: #000000; font-weight: 800; box-shadow: 0 6px 20px rgba(255,235,59,0.4); border: 2px solid #FBC02D; }
  .calendar-day.selected { background: rgba(0,128,0,0.2); border-color: #008000; box-shadow: 0 4px 12px rgba(0,128,0,0.15); }
  .calendar-day:hover:not(.empty) { background: rgba(0,128,0,0.08); border-color: rgba(0,128,0,0.3); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,128,0,0.12); }
  .calendar-day.has-event { background: rgba(0,128,0,0.12); border: 2px solid rgba(0,128,0,0.35); }
  .calendar-day.has-event::after { content: ''; position: absolute; bottom: 4px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 2px 6px rgba(0,128,0,0.3); }
  .calendar-day .day-number { font-weight: 800; font-size: 1.1rem; }
  .calendar-day .event-indicator { display: flex; gap: 3px; justify-content: center; align-items: center; margin-top: 3px; }
  .calendar-day .event-dot { display: inline-block; width: 6px; height: 6px; background: #008000; border-radius: 50%; }
  .calendar-day .event-dot-more { display: inline-flex; align-items: center; justify-content: center; width: 6px; height: 6px; background: #008000; border-radius: 50%; font-size: 0.5rem; color: #fff; font-weight: 800; }
  .calendar-day.day-number-only { flex-direction: column; }

  /* EVENT CALENDAR */
  .events-list { margin-top: 2.5rem; }
  .events-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; border-bottom: 3px solid rgba(0,128,0,0.15); padding-bottom: 1rem; letter-spacing: -0.01em; }
  .event-item { background: linear-gradient(135deg, rgba(0,128,0,0.08), rgba(255,255,0,0.03)); border-left: 5px solid var(--gold); padding: 1.25rem; border-radius: 12px; margin-bottom: 1rem; border: 1px solid rgba(0,128,0,0.12); transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .event-item:hover { transform: translateX(6px); box-shadow: 0 6px 20px rgba(0,128,0,0.12); border-color: rgba(0,128,0,0.25); }
  .event-date { font-size: 0.85rem; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
  .event-name { font-weight: 800; color: var(--text); margin-bottom: 0.5rem; font-size: 1.05rem; }
  .event-desc { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; }

  /* WORK PROGRAMS SECTION */
  .work-programs { margin-top: 2rem; }
  .program-header { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; border-bottom: 2px solid rgba(0,128,0,0.1); padding-bottom: 1rem; }
  .bidang-section { margin-bottom: 2.5rem; }
  .bidang-title { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
  .program-card { background: var(--white); border: 1.5px solid rgba(0,128,0,0.08); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); }
  .program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,128,0,0.12); border-color: rgba(0,128,0,0.2); }
  .program-card h4 { font-weight: 700; color: var(--text); margin: 0 0 0.5rem 0; font-size: 1rem; }
  .program-card p { font-size: 0.9rem; color: var(--muted); margin: 0.35rem 0; line-height: 1.6; }
  .program-meta { display: flex; gap: 1rem; margin-top: 0.75rem; flex-wrap: wrap; font-size: 0.8rem; }
  .program-meta-item { display: flex; align-items: center; gap: 0.3rem; color: var(--muted); }
  .status-indicator { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 0.35rem; }
  .status-indicator.active { background: var(--success); }
  .status-indicator.pending { background: var(--warning); }

  /* SHARE BUTTONS */
  .share-buttons {
    display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap;
  }
  .share-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.2rem; border-radius: 10px; border: none;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Sans', sans-serif;
  }
  .share-btn-facebook {
    background: #1877F2; color: white;
  }
  .share-btn-facebook:hover {
    background: #166FE5; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.4);
  }
  .share-btn-twitter {
    background: #1DA1F2; color: white;
  }
  .share-btn-twitter:hover {
    background: #1a8cd8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,161,242,0.4);
  }
  .share-btn-whatsapp {
    background: #25D366; color: white;
  }
  .share-btn-whatsapp:hover {
    background: #20ba5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  }
  .share-btn-copy {
    background: #E5E7EB; color: #374151;
  }
  .share-btn-copy:hover {
    background: #D1D5DB; transform: translateY(-2px);
  }

  /* RESPONSIVE EXTRA SMALL (max-width: 480px) */
  @media (max-width: 480px) {
    .nav-toggle { display: flex; }
    .nav-links {
      display: none; flex-direction: column; width: 100%; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.97) 100%);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 2.5px solid rgba(0,128,0,0.15);
      padding: 0.5rem 0;
      box-shadow: 0 16px 56px rgba(0,0,0,0.18), 0 4px 12px rgba(0,128,0,0.1);
      z-index: 99;
      max-height: calc(100vh - 75px);
      overflow-y: auto;
      animation: slideDown .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .nav-links.active { display: flex; }
    .hero { padding: 2.5rem 1rem; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 1rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 1.75rem; }
    .stats-row { gap: 1rem; margin-top: 3rem; padding-top: 2rem; }
    .stat-item { flex: 1 1 45%; }
    .stat-num { font-size: 1.8rem; }
    .stat-label { font-size: 0.7rem; }
    .section { padding: 3rem 1rem; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 1rem; }
    .section-header p { font-size: 0.9rem; line-height: 1.6; }
    
    /* RESPONSIVE GRID - Extra Small */
    .grid { gap: 1.5rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 1.25rem; }
    .card { border-radius: 14px; border: 2px solid rgba(0,128,0,0.15); }
    .card-img { height: 180px; }
    .card-body { padding: 1.25rem; }
    .card-title { font-size: 1.05rem; margin-bottom: 0.6rem; }
    .card-excerpt { font-size: 0.88rem; }
    .card-meta { font-size: 0.75rem; gap: 0.5rem; margin-bottom: 0.6rem; }
    .tag { padding: 0.35rem 0.7rem; font-size: 0.7rem; }
    .card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,128,0,0.2); }
    /* Force vertical on mobile */
    .card-horizontal { flex-direction: column !important; }
    .card-horizontal .card-img { width: 100% !important; height: 180px !important; }
    .card-horizontal .card-body { width: 100% !important; }
  }

  /* RESPONSIVE SMALL MOBILE (481px - 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
      display: none; flex-direction: column; width: 100%; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.97) 100%);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 2.5px solid rgba(0,128,0,0.15);
      padding: 0.5rem 0;
      box-shadow: 0 16px 56px rgba(0,0,0,0.18), 0 4px 12px rgba(0,128,0,0.1);
      z-index: 99;
      max-height: calc(100vh - 75px);
      overflow-y: auto;
      animation: slideDown .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .nav-links.active { display: flex; }
    .hero { padding: 3rem 1.5rem; }
    .hero h1 { font-size: clamp(2rem, 6vw, 2.8rem); margin-bottom: 1.25rem; }
    .hero p { font-size: 1rem; margin-bottom: 2rem; }
    .stats-row { gap: 1.5rem; margin-top: 4rem; padding-top: 2.5rem; }
    .stat-item { flex: 1 1 48%; }
    .stat-num { font-size: 2.2rem; }
    .stat-label { font-size: 0.75rem; }
    .section { padding: 3.5rem 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: 1rem; }
    .section-header p { font-size: 0.95rem; }
    
    /* RESPONSIVE GRID - Mobile */
    .grid { gap: 2rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 1.75rem; }
    .card { border-radius: 15px; border: 2px solid rgba(0,128,0,0.16); }
    .card-img { height: 200px; }
    .card-body { padding: 1.5rem; }
    .card-title { font-size: 1.1rem; margin-bottom: 0.7rem; }
    .card-excerpt { font-size: 0.92rem; }
    .card-meta { font-size: 0.78rem; margin-bottom: 0.7rem; }
    .tag { padding: 0.4rem 0.8rem; font-size: 0.73rem; }
    .card:hover { transform: translateY(-10px); box-shadow: 0 24px 56px rgba(0,128,0,0.22); }
    /* Force vertical on small mobile */
    .card-horizontal { flex-direction: column !important; }
    .card-horizontal .card-img { width: 100% !important; height: 180px !important; }
    .card-horizontal .card-body { width: 100% !important; }
  }

  /* RESPONSIVE EXTRA SMALL (max-width: 480px) */
  @media (max-width: 480px) {
    .admin-shell {
      flex-wrap: wrap;
      width: 100%;
      overflow-x: hidden;
    }
    .admin-sidebar {
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      height: auto;
      position: relative;
      border-right: none;
      border-bottom: 2px solid rgba(255,255,0,0.2);
      background: linear-gradient(90deg, #0a3d0a 0%, #1a5c1a 100%);
      flex-direction: row;
      align-items: center;
      overflow-x: auto;
      overflow-y: visible;
      padding: 0.5rem 0;
      justify-content: flex-start;
    }
    .admin-main {
      width: 100%;
      min-width: 100%;
    }
    .admin-content {
      padding: 1rem 0.75rem;
      position: relative;
    }
    .sidebar-brand {
      padding: 0.6rem 1rem;
      border-right: 2px solid rgba(255,255,0,0.2);
      border-bottom: none;
      width: auto;
      flex-shrink: 0;
      min-width: 150px;
    }
    .sidebar-brand .logo {
      font-size: 0.65rem;
      color: #FFFF00;
    }
    .sidebar-brand .sub {
      display: none;
    }
    .sidebar-nav {
      display: flex;
      flex-direction: row;
      padding: 0;
      flex-wrap: nowrap;
      overflow-x: auto;
      flex: 1;
      align-items: center;
      gap: 0;
    }
    .sidebar-section {
      display: none;
    }
    .sidebar-link {
      padding: 0.6rem 0.8rem;
      gap: 0;
      font-size: 0.65rem;
      border-left: none;
      border-bottom: 3px solid transparent;
      white-space: nowrap;
      border-radius: 0;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      font-weight: 600;
      min-width: fit-content;
    }
    .sidebar-link:hover {
      transform: none;
      background: rgba(0,255,0,0.2);
      border-bottom-color: #FFFF00;
      border-left-color: transparent;
    }
    .sidebar-link.active {
      background: rgba(0,255,0,0.25);
      border-bottom-color: #FFFF00;
      border-left-color: transparent;
    }
    .sidebar-link-text {
      display: block;
      font-size: 0.65rem;
      line-height: 1.1;
    }
    .sidebar-footer {
      display: none;
    }
    .admin-topbar {
      padding: 0.6rem 0.8rem;
      flex-direction: column;
      gap: 0.4rem;
    }
    .topbar-title {
      font-size: 0.85rem;
    }
    .topbar-user {
      font-size: 0.65rem;
      gap: 0.4rem;
    }
    .avatar {
      width: 28px;
      height: 28px;
      font-size: 0.65rem;
    }
    .admin-panel {
      width: 100%;
      position: relative;
    }
    .admin-panel h2 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .stat-card {
      padding: 1rem;
    }
    .stat-card .label {
      font-size: 0.7rem;
    }
    .stat-card .value {
      font-size: 1.8rem;
    }
    .table-card {
      border-radius: 10px;
      overflow-x: auto;
    }
    .table-header {
      padding: 0.85rem;
    }
    .table-header h3 {
      font-size: 1rem;
    }
    .table-card table {
      font-size: 0.75rem;
    }
    .table-card th, .table-card td {
      padding: 0.5rem;
    }
    .btn-sm {
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
    }
  }

  /* RESPONSIVE TABLET (481px - 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    .admin-shell {
      flex-wrap: nowrap;
    }
    .admin-sidebar {
      width: 140px;
      min-width: 140px;
      max-width: 140px;
    }
    .admin-main {
      width: calc(100% - 140px);
    }
    .admin-content {
      padding: 1rem;
    }
    .sidebar-link {
      padding: 0.6rem 0.8rem;
      font-size: 0.75rem;
    }
    .sidebar-link-text {
      font-size: 0.75rem;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .admin-panel h2 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }
  }

  /* RESPONSIVE SMALL LANDSCAPE (max-width: 768px) - NAVIGATION */
  @media (max-width: 768px) and (orientation: landscape) {
    .nav-toggle {
      padding: 0.8rem 1.5rem;
      min-height: 70px;
      display: flex;
    }
    .nav-links {
      display: none; flex-direction: column; width: 100%; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 100%);
      backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
      border-bottom: 1px solid rgba(0,128,0,0.1);
      padding: 0.4rem 0;
      box-shadow: 0 10px 40px rgba(0,0,0,0.12);
      z-index: 99;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
      animation: slideDown 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    }
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .nav-links.active { display: flex; }
    .nav-links a {
      padding: 1rem 2rem;
      border-radius: 0;
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(0,128,0,0.08);
      border-left: 4px solid transparent;
      transition: all 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-weight: 500;
    }
    .nav-links a::after {
      content: '';
      display: none;
    }
    .nav-links a:hover {
      background: rgba(0,128,0,0.08);
      border-left-color: #008000;
      padding-left: 2.3rem;
      transform: translateX(4px);
      color: #006400;
    }
    .nav-links a:hover::before {
      transform: scale(1.3) rotate(10deg);
    }
    .nav-links a.active {
      background: rgba(0,128,0,0.12);
      border-left-color: #006400;
      color: #006400;
      font-weight: 600;
    }
    .nav-links a.active::before {
      transform: scale(1.3);
      display: inline-flex;
    }
    .nav-links a.nav-cta {
      margin: 1rem 1.5rem;
      width: calc(100% - 3rem);
      text-align: center;
      border-bottom: none;
      border-radius: 14px;
      border-left: none;
      padding: 1rem 1.75rem !important;
      font-weight: 700 !important;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold-light) 0%, #FFFF00 100%) !important;
      color: #000000 !important;
      box-shadow: 0 10px 28px rgba(255,255,0,0.4), 0 2px 8px rgba(0,0,0,0.1);
      transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
      font-size: 0.98rem !important;
      gap: 0.8rem;
    }
    .nav-links a.nav-cta:hover {
      transform: translateY(-4px) scale(1.02) !important;
      box-shadow: 0 10px 28px rgba(255,255,0,0.4) !important;
      background: linear-gradient(135deg, #FFFF00 0%, var(--gold-light) 100%) !important;
    }
    .nav-links a.nav-cta:hover::before {
      transform: scale(1.5) rotate(20deg);
    }
    .about-split, .contact-grid, .form-row { grid-template-columns: 1fr; }
    .stats-row { gap: 1.5rem; flex-wrap: wrap; }
    .admin-shell {
      flex-wrap: wrap;
      width: 100%;
    }
    .admin-sidebar { 
      display: flex;
      width: 200px;
      min-width: 200px;
      max-width: 200px;
      flex-direction: column;
      align-items: stretch;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
      border-right: 2px solid rgba(255,255,0,0.2);
      z-index: 100;
    }
    .admin-main {
      width: calc(100% - 200px);
    }
    .sidebar-brand {
      padding: 1.2rem 1rem;
      text-align: left;
      border-bottom: 2px solid rgba(255,255,0,0.3);
      width: 100%;
    }
    .sidebar-brand .logo {
      font-size: 0.8rem;
      color: #FFFF00;
    }
    .sidebar-brand .sub {
      display: block;
      color: rgba(255,255,255,0.7);
      font-size: 0.65rem;
    }
    .sidebar-section {
      padding: 0.8rem 1rem 0.4rem;
      font-size: 0.65rem;
      display: block;
      color: #FFFF00;
    }
    .sidebar-link {
      padding: 0.75rem 1rem;
      gap: 0.6rem;
      font-size: 0.85rem;
      justify-content: flex-start;
      border-left: 3px solid transparent;
    }
    .sidebar-link-text {
      display: inline;
      font-size: 0.85rem;
    }
    .sidebar-link[data-tooltip]::after {
      display: none;
    }
    .sidebar-section {
      font-size: 0.6rem;
      display: block;
      color: var(--gold-light);
      font-weight: 800;
    }
    .sidebar-brand .sub {
      font-size: 0.45rem;
      display: none;
    }
    .sidebar-nav {
      padding: 0.5rem 0;
      width: 100%;
      flex: 1;
    }
    .sidebar-section {
      padding: 0.3rem 0.3rem;
      font-size: 0.45rem;
      display: none;
    }
    .sidebar-link {
      padding: 0.7rem 0.5rem;
      gap: 0;
      font-size: 0;
      width: 100%;
      justify-content: center;
      border-left: none;
      border-bottom: 2px solid transparent;
      position: relative;
      color: rgba(255,255,255,0.75);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .sidebar-link:hover {
      transform: none;
      background: rgba(0,128,0,0.2);
      border-bottom-color: var(--gold);
      color: rgba(255,255,255,0.98);
    }
    .sidebar-link.active {
      border-bottom-color: var(--gold-light);
      border-left: none;
      background: rgba(0,128,0,0.25);
      color: var(--gold-light);
    }
    .sidebar-link .icon {
      width: 24px;
      font-size: 1.4rem;
    }
    .sidebar-link-text {
      display: none;
    }
    .sidebar-link[data-tooltip]::after {
      content: attr(data-tooltip);
      background: rgba(0, 128, 0, 0.95);
      color: white;
      padding: 0.4rem 0.6rem;
      font-size: 0.75rem;
    }
    .sidebar-footer {
      padding: 0.5rem 0.3rem;
      width: 100%;
      border-top: 1px solid rgba(0,128,0,0.1);
    }
    .logout-btn {
      padding: 0.5rem 0.2rem;
      font-size: 0.6rem;
      width: 100%;
      background: rgba(220,38,38,0.15);
      border: 1.5px solid rgba(220,38,38,0.35);
      color: #ff6b7a;
      border-radius: 8px;
    }
    .logout-btn:hover {
      background: rgba(220,38,38,0.25);
    }
    .logout-btn[data-tooltip]::after {
      content: attr(data-tooltip);
      background: rgba(220,38,38,0.95);
      color: white;
      padding: 0.4rem 0.6rem;
      font-size: 0.75rem;
    }
    .admin-topbar {
      padding: 0.75rem 1rem;
      flex-wrap: wrap;
    }
    .topbar-title {
      font-size: 0.95rem;
      font-weight: 700;
    }
    .topbar-user {
      font-size: 0.75rem;
      gap: 0.5rem;
    }
    .avatar {
      width: 32px;
      height: 32px;
      font-size: 0.75rem;
    }
    .admin-content {
      padding: 1rem;
      position: relative;
    }
    .admin-panel {
      padding: 0;
      width: 100%;
      position: relative;
    }
    .admin-panel.active {
      position: relative;
    }
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .stat-card {
      padding: 1.25rem;
    }
    .section { padding: 2rem 1rem; }
    .hero { padding: 3rem 1rem; }

    /* RESPONSIVE LOGIN */
    .login-container { 
      flex-direction: column; max-width: 100%; min-height: auto;
      border-radius: 16px; gap: 0;
    }
    .login-forms { 
      width: 100%; border-radius: 16px 16px 0 0;
    }
    .login-form-side { 
      padding: 2.5rem 1.75rem; animation: slideInRight .5s ease;
    }
    .login-overlay-panel { 
      width: 100%; min-height: auto; height: auto;
      padding: 2.5rem 1.75rem; 
      border-radius: 0 0 16px 16px; 
      border-top: 2px solid rgba(0,128,0,0.25);
    }
    .login-overlay-panel h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
    .login-overlay-panel p { font-size: 0.95rem; margin-bottom: 2rem; }
    .overlay-btn { width: 100%; padding: 0.8rem 1.5rem; }
    
    /* RESPONSIVE GRID - Mobile */
    .grid-3 { grid-template-columns: 1fr; gap: 1.75rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 1.75rem; }
    .grid { gap: 1.75rem; }
    .card-img { height: 180px; }
    .card-body { padding: 1rem; }
    .card-title { font-size: 1rem; }
    .card-excerpt { font-size: 0.85rem; }
    .card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,128,0,0.2); }
    .section { padding: 4rem 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  }

  /* RESPONSIVE TABLET (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .admin-shell {
      flex-wrap: nowrap;
    }
    .admin-sidebar {
      width: 160px;
      min-width: 160px;
      max-width: 160px;
    }
    .admin-main {
      width: calc(100% - 160px);
    }
    .sidebar-link {
      padding: 0.65rem 0.9rem;
      font-size: 0.8rem;
    }
    .sidebar-link-text {
      font-size: 0.8rem;
    }
    .sidebar-nav {
      padding: 1.2rem 1rem;
      border-bottom: 1px solid rgba(0,128,0,0.1);
    }
    .sidebar-brand .logo {
      font-size: 0.95rem;
      color: var(--gold-light);
    }
    .sidebar-brand .sub {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.5);
    }
    .sidebar-nav {
      padding: 0.6rem 0;
    }
    .sidebar-section {
      padding: 0.5rem 1rem 0.25rem;
      font-size: 0.62rem;
      color: rgba(255,255,255,0.45);
    }
    .sidebar-link {
      padding: 0.6rem 1rem;
      gap: 0.7rem;
      font-size: 0.85rem;
      border-left: 3px solid transparent;
      color: rgba(255,255,255,0.75);
    }
    .sidebar-link:hover {
      background: rgba(0,128,0,0.15);
      color: rgba(255,255,255,0.98);
      border-left-color: var(--gold);
      transform: none;
    }
    .sidebar-link.active {
      border-left-color: var(--gold-light);
      background: rgba(0,128,0,0.25);
      color: var(--gold-light);
    }
    .sidebar-link .icon {
      width: 16px;
      font-size: 1rem;
    }
    .sidebar-link-text {
      display: inline;
    }
    .sidebar-link[data-tooltip]::after {
      display: none;
    }
    .sidebar-footer {
      padding: 0.75rem 1rem;
      border-top: 1px solid rgba(0,128,0,0.1);
    }
    .logout-btn {
      padding: 0.6rem 0.8rem;
      font-size: 0.8rem;
      background: rgba(220,38,38,0.15);
      border: 1.5px solid rgba(220,38,38,0.35);
      color: #ff6b7a;
    }
    .logout-btn:hover {
      background: rgba(220,38,38,0.25);
      border-color: rgba(220,38,38,0.5);
      color: #ff8a95;
    }
    .admin-topbar {
      padding: 1rem 1.5rem;
    }
    .topbar-title {
      font-size: 1rem;
    }
    .topbar-user {
      font-size: 0.85rem;
      gap: 0.7rem;
    }
    .avatar {
      width: 35px;
      height: 35px;
      font-size: 0.8rem;
    }
    .admin-content {
      padding: 1.5rem;
    }
    .admin-panel {
      display: block;
    }
    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .stat-card {
      padding: 1.25rem;
    }
    
    /* RESPONSIVE GRID - Tablet */
    .grid-3 { grid-template-columns: 1fr; gap: 2.5rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .grid { gap: 2.5rem; }
    .card { border: 2px solid rgba(0,128,0,0.17); }
    .card-img { height: 220px; }
    .card-body { padding: 1.5rem; }
    .card-title { font-size: 1.15rem; margin-bottom: 0.75rem; }
    .card-excerpt { font-size: 0.93rem; }
    .card-meta { margin-bottom: 0.75rem; }
    .card:hover { transform: translateY(-12px); box-shadow: 0 28px 56px rgba(0,128,0,0.26); }
    .card-horizontal .card-img { height: 220px; }
    .section { padding: 5rem 2rem; }
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: clamp(2rem, 5vw, 2.6rem); }
  }

  /* RESPONSIVE DESKTOP (1025px+) */
  @media (min-width: 1025px) {
    .admin-shell {
      flex-wrap: nowrap;
    }
    .admin-sidebar {
      width: 220px;
      min-width: 220px;
      max-width: 220px;
    }
    .admin-main {
      width: calc(100% - 220px);
    }
    .sidebar-brand {
      padding: 1.2rem 1rem;
    }
    .sidebar-brand .logo {
      font-size: 0.85rem;
      color: #FFFF00;
    }
    .sidebar-brand .sub {
      display: block;
      color: rgba(255,255,255,0.7);
      font-size: 0.7rem;
    }
    .sidebar-nav {
      padding: 1rem 0;
    }
    .sidebar-section {
      display: block;
      padding: 0.8rem 1rem 0.4rem;
      font-size: 0.7rem;
      color: #FFFF00;
      border-bottom: 1px solid rgba(255,255,0,0.2);
      margin: 0.5rem 1rem;
    }
    .sidebar-link {
      padding: 0.75rem 1rem;
      gap: 0.6rem;
      font-size: 0.9rem;
      border-left: 3px solid transparent;
      border-bottom: none;
    }
    .sidebar-link-text {
      display: inline;
      font-size: 0.9rem;
    }
    .sidebar-link[data-tooltip]::after {
      display: none;
      opacity: 0;
    }
    .sidebar-footer {
      padding: 0.5rem 0.3rem;
    }
    .logout-btn {
      padding: 0.5rem 0.2rem;
      font-size: 0.6rem;
    }
    .admin-topbar {
      padding: 1.25rem 2rem;
    }
    .topbar-title {
      font-size: 1.15rem;
    }
    .topbar-user {
      font-size: 0.9rem;
      gap: 0.9rem;
    }
    .avatar {
      width: 38px;
      height: 38px;
      font-size: 0.9rem;
    }
    .admin-content {
      padding: 2rem;
      position: relative;
    }
    .admin-panel {
      display: none !important;
      visibility: hidden !important;
      position: absolute;
      width: 100%;
    }
    .admin-panel.active {
      display: block !important;
      visibility: visible !important;
      position: relative;
    }
    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .stat-card {
      padding: 1.75rem;
    }
    
    /* RESPONSIVE GRID - Desktop */
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .grid { gap: 3rem; }
    .card { border: 2px solid rgba(0,128,0,0.18); }
    .card-img { height: 260px; }
    .card-body { padding: 1.75rem; }
    .card-title { font-size: 1.2rem; margin-bottom: 0.85rem; }
    .card-excerpt { font-size: 0.93rem; }
    .card-meta { margin-bottom: 0.8rem; }
    .card:hover { transform: translateY(-16px); box-shadow: 0 40px 80px rgba(0,128,0,0.28); }
    .card-horizontal .card-img { height: 260px; min-height: 220px; }
    .card-horizontal .card-title { font-size: 1.2rem; }
    .card-horizontal .card-excerpt { font-size: 0.93rem; }
    .card-horizontal:hover { transform: translateX(-14px) translateY(-12px); }
    .section { padding: 7rem 2rem; }
    .section-header { margin-bottom: 4rem; }
    .section-header h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); }
  }

  /* RESPONSIVE DESKTOP LARGE (1200px+) */
  @media (min-width: 1200px) {
    /* RESPONSIVE GRID - Desktop Large */
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 3.25rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3.25rem; }
    .grid { gap: 3.25rem; }
    .card { border: 2px solid rgba(0,128,0,0.18); }
    .card-img { height: 280px; }
    .card-body { padding: 1.85rem; }
    .card-title { font-size: 1.25rem; margin-bottom: 0.9rem; }
    .card-excerpt { font-size: 0.95rem; }
    .card:hover { transform: translateY(-18px); box-shadow: 0 44px 88px rgba(0,128,0,0.3); }
    .card-horizontal .card-img { height: 280px; }
    .card-horizontal .card-body { padding: 1.85rem; }
    .card-horizontal .card-title { font-size: 1.25rem; }
    .section { padding: 8rem 3rem; }
    .section-header { margin-bottom: 4.5rem; }
    .section-inner { max-width: 1400px; }
  }

  /* RESPONSIVE DESKTOP EXTRA LARGE (1400px+) */
  @media (min-width: 1400px) {
    /* RESPONSIVE GRID - Desktop XL */
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; }
    .grid { gap: 3.5rem; }
    .card { border: 2px solid rgba(0,128,0,0.19); border-radius: 18px; }
    .card-img { height: 300px; }
    .card-body { padding: 2rem; }
    .card-title { font-size: 1.3rem; margin-bottom: 1rem; }
    .card-excerpt { font-size: 0.96rem; }
    .card-meta { font-size: 0.8rem; margin-bottom: 0.9rem; }
    .card:hover { transform: translateY(-20px); box-shadow: 0 48px 96px rgba(0,128,0,0.32); }
    .card-horizontal .card-img { height: 300px; }
    .card-horizontal .card-body { padding: 2rem; }
    .card-horizontal .card-title { font-size: 1.3rem; }
    .section { padding: 8.5rem 3.5rem; }
    .section-header { margin-bottom: 5rem; }
    .section-inner { max-width: 1500px; }
    .section-header h2 { font-size: clamp(2.4rem, 5vw, 3.2rem); }
  }

  /* RESPONSIVE DESKTOP ULTRA WIDE (1600px+) */
  @media (min-width: 1600px) {
    /* RESPONSIVE GRID - Desktop Ultra */
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 3.75rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3.75rem; }
    .grid { gap: 3.75rem; }
    .card { border: 2px solid rgba(0,128,0,0.19); }
    .card-img { height: 320px; }
    .card-body { padding: 2.25rem; }
    .card-title { font-size: 1.35rem; margin-bottom: 1rem; }
    .card-excerpt { font-size: 0.97rem; }
    .card:hover { transform: translateY(-22px); box-shadow: 0 52px 104px rgba(0,128,0,0.34); }
    .card-horizontal .card-img { height: 320px; }
    .card-horizontal .card-body { padding: 2.25rem; }
    .card-horizontal .card-title { font-size: 1.35rem; }
    .section { padding: 9rem 4rem; }
    .section-header { margin-bottom: 5.5rem; }
    .section-inner { max-width: 1600px; }
    .section-header h2 { font-size: clamp(2.6rem, 5.5vw, 3.4rem); }
  }

  /* RESPONSIVE DESKTOP CINEMA (1920px+) */
  @media (min-width: 1920px) {
    /* RESPONSIVE GRID - Desktop 4K */
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .grid { gap: 4rem; }
    .card { border: 2px solid rgba(0,128,0,0.2); border-radius: 20px; }
    .card-img { height: 340px; }
    .card-body { padding: 2.5rem; }
    .card-title { font-size: 1.45rem; margin-bottom: 1.1rem; }
    .card-excerpt { font-size: 1.01rem; }
    .card:hover { transform: translateY(-24px); box-shadow: 0 56px 112px rgba(0,128,0,0.36); }
    .card-horizontal .card-img { height: 340px; }
    .card-horizontal .card-body { padding: 2.5rem; }
    .card-horizontal .card-title { font-size: 1.45rem; }
    .card-horizontal .card-excerpt { font-size: 1.01rem; }
    .section { padding: 10rem 5rem; }
    .section-header { margin-bottom: 6rem; }
    .section-inner { max-width: 1800px; }
    .section-header h2 { font-size: clamp(2.8rem, 6vw, 3.6rem); }
  }

  /* LANDSCAPE MOBILE (max-height: 600px) */
  @media (max-height: 600px) and (orientation: landscape) {
    .admin-sidebar {
      height: auto;
      overflow-y: auto;
      max-height: 100vh;
    }
    .sidebar-brand {
      padding: 0.8rem 1rem;
    }
    .sidebar-brand .logo {
      font-size: 0.9rem;
    }
    .sidebar-link {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
    }
  }

  /* MOBILE OPTIMIZATION - FORMS & INPUTS */
  @media (max-width: 480px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
      font-size: 16px;
      padding: 0.85rem;
      border-radius: 8px;
      width: 100%;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .btn, .btn-sm, .btn-primary, .btn-gold {
      width: 100%;
      padding: 0.8rem 1rem;
      font-size: 0.9rem;
      border-radius: 8px;
      margin-top: 0.5rem;
    }

    .calendar-container {
      border-radius: 8px;
      overflow: hidden;
    }

    .calendar-header {
      padding: 1rem;
    }

    .calendar-nav button {
      padding: 0.5rem 0.8rem;
      font-size: 0.8rem;
    }

    .calendar-month {
      font-size: 1.2rem;
      min-width: 200px;
    }

    .calendar-body {
      padding: 0.75rem;
    }

    .calendar-day {
      font-size: 0.8rem;
      padding: 0.5rem;
    }

    .calendar-day .day-number {
      font-size: 0.95rem;
    }

    .info-card {
      padding: 1rem !important;
    }

    h2, h3 {
      font-size: 1.15rem;
      line-height: 1.3;
    }

    .event-item {
      padding: 0.85rem;
      margin-bottom: 0.75rem;
    }

    .program-card {
      padding: 1rem;
      margin-bottom: 0.75rem;
    }

    .bidang-section {
      margin-bottom: 1.5rem;
    }

    /* Prevent text from being too small on mobile */
    body {
      font-size: 14px;
    }

    /* Ensure touchable button sizes */
    button, a[role="button"] {
      min-height: 44px;
      min-width: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Table responsiveness */
    .table-card table {
      display: block;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .table-card table thead {
      display: none;
    }

    .table-card table tbody {
      display: block;
      width: 100%;
    }

    .table-card table tr {
      display: block;
      border-bottom: 2px solid rgba(0,128,0,0.1);
      margin-bottom: 1rem;
      padding: 1rem;
      background: #f9fafb;
      border-radius: 8px;
    }

    .table-card table td {
      display: block;
      text-align: left;
      padding: 0.5rem 0;
      border: none;
    }

    .table-card table td::before {
      content: attr(data-label);
      font-weight: 600;
      color: var(--muted);
      display: inline-block;
      width: 40%;
      font-size: 0.8rem;
    }

    .sidebar-link[data-tooltip]::after {
      display: none;
    }

    .logout-btn {
      display: none;
    }
  }

  /* TABLET OPTIMIZATION (481px - 1024px) */
  @media (min-width: 481px) and (max-width: 1024px) {
    .calendar-container {
      border-radius: 10px;
    }

    .event-item {
      padding: 1rem;
    }

    .table-card table {
      font-size: 0.85rem;
    }

    .table-card th,
    .table-card td {
      padding: 0.7rem;
    }

    .btn-sm {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
    }
  }
