/* SMK Pujangga - Modern Institutional Styles */
:root {
  /* Brand palette : green lumut/forest sesuai logo sekolah (#3CA052) */
  --brand-50: #f1faf5;
  --brand-100: #dcf3e6;
  --brand-200: #b8e7cf;
  --brand-300: #87d5ae;
  --brand-400: #4fb985;
  --brand-500: #2e9f66;
  --brand-600: #1f8353;
  --brand-700: #166b45;
  --brand-800: #125438;
  --brand-900: #0e452e;
  --brand-950: #06281a;
  /* Emerald pelengkap hijau lembut */
  --emerald-50: #effaf3;
  --emerald-100: #d7f3e3;
  --emerald-200: #b0e7c9;
  --emerald-300: #7fd6aa;
  --emerald-400: #4fc086;
  --emerald-500: #2faa6e;
  --emerald-600: #208b59;
  --emerald-700: #177048;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 12px 32px rgba(15, 23, 42, 0.10);
  --radius: 1rem;
  --radius-lg: 1.35rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { line-height: 1.6; }

.font-heading { font-family: 'Poppins', 'Inter', sans-serif; }
.font-body { font-family: 'Inter', 'Poppins', sans-serif; }

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; line-height: 1.25; }

/* Typography helpers */
.text-4xl { font-size: 2.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Colors */
.text-white { color: #fff; }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }
.text-brand-50 { color: var(--brand-50); }
.text-brand-100 { color: var(--brand-100); }
.text-brand-200 { color: var(--brand-200); }
.text-brand-300 { color: var(--brand-300); }
.text-brand-400 { color: var(--brand-400); }
.text-brand-500 { color: var(--brand-500); }
.text-brand-600 { color: var(--brand-600); }
.text-brand-700 { color: var(--brand-700); }
.text-brand-800 { color: var(--brand-800); }
.text-brand-900 { color: var(--brand-900); }
.text-emerald-400 { color: var(--emerald-400); }
.text-emerald-500 { color: var(--emerald-500); }
.text-emerald-600 { color: var(--emerald-600); }
.text-emerald-700 { color: var(--emerald-700); }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-brand-50 { background-color: var(--brand-50); }
.bg-brand-100 { background-color: var(--brand-100); }
.bg-brand-200 { background-color: var(--brand-200); }
.bg-brand-500 { background-color: var(--brand-500); }
.bg-brand-600 { background-color: var(--brand-600); }
.bg-brand-700 { background-color: var(--brand-700); }
.bg-brand-800 { background-color: var(--brand-800); }
.bg-brand-900 { background-color: var(--brand-900); }
.bg-emerald-50 { background-color: var(--emerald-50); }
.bg-emerald-100 { background-color: var(--emerald-100); }
.bg-emerald-300 { background-color: var(--emerald-300); }
.bg-emerald-400 { background-color: var(--emerald-400); }
.bg-emerald-500 { background-color: var(--emerald-500); }
.bg-emerald-600 { background-color: var(--emerald-600); }
.bg-emerald-700 { background-color: var(--emerald-700); }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-purple-500 { background-color: #8b5cf6; }
.bg-rose-500 { background-color: #f43f5e; }
.bg-teal-500 { background-color: #14b8a6; }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-brand-600 { --tw-gradient-from: var(--brand-600); --tw-gradient-to: rgba(31,131,83,0); }
.from-brand-700 { --tw-gradient-from: var(--brand-700); --tw-gradient-to: rgba(22,107,69,0); }
.to-emerald-600 { --tw-gradient-to: var(--emerald-600); }
.from-gray-900 { --tw-gradient-from: var(--gray-900); --tw-gradient-to: rgba(17,24,39,0); }
.from-gray-800 { --tw-gradient-from: var(--gray-800); --tw-gradient-to: rgba(31,41,55,0); }
.to-brand-900 { --tw-gradient-to: var(--brand-900); }
.from-brand-900 { --tw-gradient-from: var(--brand-900); --tw-gradient-to: rgba(14,69,46,0); }
.from-brand-400 { --tw-gradient-from: var(--brand-400); --tw-gradient-to: rgba(79,185,133,0); }
.from-emerald-400 { --tw-gradient-from: var(--emerald-400); --tw-gradient-to: rgba(79,192,134,0); }
.to-emerald-400 { --tw-gradient-to: var(--emerald-400); }
.to-emerald-700 { --tw-gradient-to: var(--emerald-700); }
.from-black { --tw-gradient-from: #000; --tw-gradient-to: rgba(0,0,0,0); }
/* Jurusan accent gradients */
.from-sky-500 { --tw-gradient-from: #0ea5e9; --tw-gradient-to: rgba(14,165,233,0); }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.from-fuchsia-500 { --tw-gradient-from: #d946ef; --tw-gradient-to: rgba(217,70,239,0); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.from-orange-500 { --tw-gradient-from: #f97316; --tw-gradient-to: rgba(249,115,22,0); }
.to-red-500 { --tw-gradient-to: #ef4444; }
.from-emerald-500 { --tw-gradient-from: #10b981; --tw-gradient-to: rgba(16,185,129,0); }
.to-teal-600 { --tw-gradient-to: #0d9488; }
.from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-to: rgba(250,204,21,0); }
.to-amber-600 { --tw-gradient-to: #d97706; }

/* Layout */
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-16 { padding-top: 4rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-24 { padding-top: 6rem; }

/* Flex & Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-evenly { justify-content: space-evenly; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Borders, radius, shadow */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t-4 { border-top-width: 4px; }
.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-brand-200 { border-color: var(--brand-200); }
.border-brand-300 { border-color: var(--brand-300); }
.border-emerald-200 { border-color: var(--emerald-200); }
.border-white { border-color: #fff; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }

/* Effects */
.hover\:opacity-95:hover { opacity: 0.95; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:text-brand-300:hover { color: var(--brand-300); }
.hover\:text-brand-700:hover { color: var(--brand-700); }
.hover\:text-brand-600:hover { color: var(--brand-600); }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-gray-50:hover { background-color: var(--gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-brand-50:hover { background-color: var(--brand-50); }
.hover\:bg-brand-500:hover { background-color: var(--brand-500); }
.hover\:bg-brand-600:hover { background-color: var(--brand-600); }
.hover\:bg-red-500:hover { background-color: #ef4444; }
.transition { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* Misc */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-2 { right: 0.5rem; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.cursor-pointer { cursor: pointer; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.no-underline { text-decoration: none; }

/* Links */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; border-radius: 0.75rem; transition: all 0.25s ease; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(to right, var(--brand-600), var(--emerald-600)); color: #fff; box-shadow: 0 8px 18px rgba(31,131,83,0.28); }
.btn-primary:hover { box-shadow: 0 14px 28px rgba(31,131,83,0.35); transform: translateY(-2px); opacity: 1; }
.btn-outline { border: 2px solid rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-danger { background: var(--red, #dc2626); color: #fff; }

/* Hero */
.hero-bg {
  background-image: linear-gradient(to right, rgba(6,40,26,0.92), rgba(22,107,69,0.78), rgba(32,139,89,0.55)), url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
}

/* Card */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid var(--gray-100); transition: all 0.3s ease; }
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: var(--brand-100); }

/* Section label */
.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--brand-100);
}

/* Form */
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  color: var(--gray-800);
}
.form-input:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(46,159,102,0.15);
}
.form-input:hover { border-color: var(--gray-300); }

/* Table */
.table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.table thead th { background: var(--gray-50); padding: 0.75rem 1rem; text-align: left; font-weight: 600; color: var(--gray-600); border-bottom: 2px solid var(--gray-200); }
.table tbody td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.table tbody tr:hover { background: var(--gray-50); }

/* Badge */
.badge { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.7rem; font-weight: 600; border-radius: 9999px; }
.badge-green { background: var(--emerald-100); color: var(--emerald-700); }
.badge-blue { background: var(--brand-100); color: var(--brand-800); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }
.badge-red { background: #fee2e2; color: #b91c1c; }

/* Alert */
.alert { padding: 1rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; margin-bottom: 1rem; }
.alert-success { background: var(--emerald-50); color: var(--emerald-700); border: 1px solid var(--emerald-200); }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info { background: var(--brand-50); color: var(--brand-800); border: 1px solid var(--brand-200); }

/* Rich text content */
.rich-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.rich-content h3 { font-size: 1.25rem; font-weight: 600; color: var(--gray-800); margin-top: 1.25rem; margin-bottom: 0.5rem; }
.rich-content p { margin-bottom: 1rem; color: var(--gray-700); }
.rich-content ul, .rich-content ol { margin: 0 0 1rem 1.5rem; color: var(--gray-700); }
.rich-content ul { list-style: disc; }
.rich-content ol { list-style: decimal; }
.rich-content li { margin-bottom: 0.35rem; }
.rich-content a { color: var(--brand-600); text-decoration: underline; }
.rich-content strong { color: var(--gray-900); }
.rich-content blockquote { border-left: 4px solid var(--brand-500); padding: 0.75rem 1rem; background: var(--brand-50); margin: 1rem 0; border-radius: 0 0.5rem 0.5rem 0; }
.rich-content img { max-width: 100%; height: auto; border-radius: 0.5rem; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:h-96 { height: 24rem; }
  .hidden-sm { display: none; }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:h-20 { height: 5rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-xl { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:flex { display: flex; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Admin styles */
.admin-body { background: var(--gray-50); }
.sidebar-btn { padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--gray-300); display: flex; align-items: center; gap: 0.75rem; transition: all 0.2s ease; }
.sidebar-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.sidebar-btn.active { background: var(--brand-600); color: #fff; }

/* Prose editor toolbar */
.editor-toolbar { display: flex; flex-wrap: wrap; gap: 0.25rem; padding: 0.5rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-bottom: none; border-radius: 0.5rem 0.5rem 0 0; }
.editor-btn { padding: 0.375rem 0.625rem; border: 1px solid var(--gray-200); background: #fff; border-radius: 0.375rem; font-size: 0.8rem; cursor: pointer; color: var(--gray-700); min-width: 2rem; }
.editor-btn:hover { background: var(--brand-50); border-color: var(--brand-300); color: var(--brand-700); }
.rich-editor { min-height: 300px; border: 1px solid var(--gray-200); border-radius: 0 0 0.5rem 0.5rem; padding: 1rem; font-size: 0.95rem; line-height: 1.7; background: #fff; }
.rich-editor:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(46,159,102,0.15); }

/* Gallery grid */
.gallery-item { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--gray-100); }
.gallery-item img { width: 100%; height: 14rem; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,40,26,0.85), transparent 55%); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; padding: 1rem; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Visi mission cards */
.vm-card { border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s ease; background: #fff; box-shadow: var(--shadow-soft); }
.vm-card:hover { border-color: var(--brand-200); box-shadow: var(--shadow-lift); transform: translateY(-4px); }

/* Stat card */
.stat-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-soft); border: 1px solid var(--gray-100); }

/* Congruent reveal for rich-content */
.rich-content blockquote { border-left-color: var(--brand-500); }

.focus\:outline-none:focus { outline: none; }
.rounded { border-radius: 0.25rem; }

/* Smooth & utility additions */
.cursor-pointer { cursor: pointer; }
.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-28 { width: 7rem; }
.h-28 { height: 7rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }
.via-brand-800 { --tw-gradient-stops: var(--tw-gradient-from), rgba(18,84,56,0.8), var(--tw-gradient-to); }
.sm\:max-w-md { max-width: 28rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-2 { padding-bottom: 0.5rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }
.h-72 { height: 18rem; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem; }
.duration-500 { transition-duration: 500ms; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.drop-shadow-lg { filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15)); }

/* ============================================================
   HEADER / NAVBAR (modern, soft, responsive)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(22, 107, 69, 0.22);
  border: 2px solid #fff;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gray-900);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.72rem;
  color: var(--gray-500);
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.55rem 0.9rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
}
.nav-link:hover { color: var(--brand-700); background: var(--brand-50); }
.nav-link.active { color: var(--brand-700); background: var(--brand-50); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.15rem;
  width: 18px;
  height: 3px;
  border-radius: 9999px;
  background: var(--brand-500);
}
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-toggle:hover { background: var(--brand-50); color: var(--brand-700); }

.mobile-menu {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}
.mobile-menu-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: fadeInUp 0.25s ease;
}
.mobile-link {
  padding: 0.8rem 0.9rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
}
.mobile-link:hover { background: var(--brand-50); color: var(--brand-700); }
.mobile-link.active { background: var(--brand-50); color: var(--brand-700); font-weight: 600; }
.mobile-cta { margin-top: 0.5rem; text-align: center; }

/* ============================================================
   FOOTER (modern, green, soft)
   ============================================================ */
.site-footer {
  background: linear-gradient(140deg, #06281a 0%, #0e452e 55%, #166b45 100%);
  color: rgba(226, 232, 240, 0.75);
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-brand { margin-bottom: 1rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(226,232,240,0.6); }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.65);
  margin-bottom: 1.25rem;
}

.social-row { display: flex; gap: 0.6rem; }
.social-btn {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.7rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.25s ease;
}
.social-btn:hover { background: var(--brand-500); color: #fff; transform: translateY(-2px); }

.footer-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 3px;
  border-radius: 9999px;
  background: var(--emerald-400);
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.65);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover { color: #fff; padding-left: 0.3rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact li {
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.7);
  align-items: flex-start;
  line-height: 1.5;
}
.footer-ico { color: var(--emerald-400); flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(226,232,240,0.5);
  text-align: center;
}
.footer-heart { color: var(--emerald-400); }

/* ============================================================
   RESPONSIVE (mobile-first)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 0.92rem; }
  .brand-tag { font-size: 0.66rem; }
  .brand-logo { width: 40px; height: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
