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

    :root {
      --hijau: #1a6b3a;
      --hijau-muda: #2d9657;
      --hijau-terang: #4eca7f;
      --emas: #c9a227;
      --emas-muda: #e6c05c;
      --krem: #f8f3e8;
      --krem-gelap: #ede5d0;
      --coklat: #5c3d1e;
      --teks: #1c1c1c;
      --putih: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--krem);
      color: var(--teks);
      overflow-x: hidden;
    }

    /* ── ORNAMEN LATAR ── */
    .bg-ornament {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .bg-ornament svg { position: absolute; opacity: .04; }
    .bg-ornament .o1 { top: -10%; right: -5%; width: 600px; }
    .bg-ornament .o2 { bottom: -10%; left: -5%; width: 500px; }

    /* ── NAVIGASI ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(26,107,58,.96);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--emas);
      display: flex; align-items: center; justify-content: space-between;
      padding: .8rem 3rem;
      transition: padding .3s;
    }
    .nav-brand { display: flex; align-items: center; gap: .8rem; }
    .nav-logo {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--emas);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Amiri', serif; font-size: 1.3rem; color: var(--hijau); font-weight: 700;
      box-shadow: 0 0 0 3px rgba(201,162,39,.3);
    }
    .nav-title { line-height: 1.2; }
    .nav-title span:first-child { display: block; font-size: .65rem; color: var(--emas-muda); letter-spacing: .1em; text-transform: uppercase; }
    .nav-title strong { color: var(--putih); font-size: .95rem; }

    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      color: rgba(255,255,255,.8); text-decoration: none; font-size: .85rem; font-weight: 500;
      transition: color .2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--emas); transform: scaleX(0);
      transition: transform .3s;
    }
    .nav-links a:hover { color: var(--emas-muda); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100vh;
      background: linear-gradient(145deg, var(--hijau) 0%, #0d4425 60%, #0a3520 100%);
      display: flex; align-items: center; overflow: hidden;
      padding-top: 80px;
    }
    .hero-pattern {
      position: absolute; inset: 0;
      background-image: 
        radial-gradient(circle at 20% 50%, rgba(78,202,127,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,162,39,.1) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 3rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(201,162,39,.15); border: 1px solid rgba(201,162,39,.4);
      border-radius: 100px; padding: .4rem 1rem; margin-bottom: 1.5rem;
    }
    .hero-badge span { font-size: .75rem; color: var(--emas-muda); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
    .hero-badge::before { content: '✦'; color: var(--emas); font-size: .7rem; }

    .hero h1 {
      font-family: 'Amiri', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      color: var(--putih); line-height: 1.15;
      margin-bottom: 1rem;
    }
    .hero h1 em { color: var(--emas-muda); font-style: normal; }

    .hero-arabic {
      font-family: 'Amiri', serif; font-size: 1.6rem; color: rgba(255,255,255,.5);
      direction: rtl; margin-bottom: 1.5rem; letter-spacing: .05em;
    }

    .hero p {
      color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.8;
      margin-bottom: 2rem; max-width: 500px;
    }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-primer {
      background: var(--emas); color: var(--hijau);
      padding: .85rem 2rem; border-radius: 6px;
      font-weight: 700; font-size: .9rem; text-decoration: none;
      transition: all .25s; box-shadow: 0 4px 20px rgba(201,162,39,.4);
      border: none; cursor: pointer;
    }
    .btn-primer:hover { background: var(--emas-muda); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.5); }

    .btn-sekunder {
      background: transparent; color: var(--putih);
      padding: .85rem 2rem; border-radius: 6px;
      font-weight: 600; font-size: .9rem; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,.4); transition: all .25s;
    }
    .btn-sekunder:hover { border-color: var(--emas); color: var(--emas-muda); transform: translateY(-2px); }

    /* Kartu hero kanan */
    .hero-visual {
      position: relative; display: flex; flex-direction: column; gap: 1.2rem;
      animation: floatUp 1s ease-out forwards; opacity: 0; animation-delay: .4s;
    }
    @keyframes floatUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-card {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px; padding: 1.4rem; backdrop-filter: blur(8px);
      transition: transform .25s;
    }
    .stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
    .stat-card .angka {
      font-size: 2.4rem; font-weight: 800; color: var(--emas-muda);
      line-height: 1; margin-bottom: .3rem;
    }
    .stat-card .label { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; }

    .quote-card {
      background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.3);
      border-radius: 12px; padding: 1.4rem;
    }
    .quote-card p {
      font-family: 'Amiri', serif; font-size: 1.05rem; color: var(--emas-muda);
      font-style: italic; line-height: 1.6; margin-bottom: .5rem;
    }
    .quote-card cite { font-size: .75rem; color: rgba(255,255,255,.5); }

    /* ── SECTION UMUM ── */
    section { position: relative; z-index: 1; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

    .section-label {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
      color: var(--hijau); margin-bottom: .8rem;
    }
    .section-label::before, .section-label::after {
      content: ''; display: inline-block; width: 24px; height: 1.5px; background: var(--emas);
    }

    .section-heading {
      font-family: 'Amiri', serif; font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--hijau); line-height: 1.2; margin-bottom: 1rem;
    }
    .section-sub { color: #666; font-size: .95rem; line-height: 1.8; max-width: 600px; }

    /* ── TENTANG ── */
    #tentang { padding: 6rem 0; background: var(--krem); }
    .tentang-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .tentang-visual {
      position: relative;
    }
    .masjid-illustration {
      width: 100%; border-radius: 20px;
      background: linear-gradient(135deg, var(--hijau) 0%, #0d4425 100%);
      padding: 3rem 2rem;
      display: flex; align-items: center; justify-content: center;
      min-height: 360px;
      box-shadow: 24px 24px 0 var(--krem-gelap);
    }
    .masjid-illustration svg { width: 260px; opacity: .9; }

    .akreditasi-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--emas); color: var(--hijau);
      border-radius: 12px; padding: 1rem 1.4rem;
      box-shadow: 0 8px 24px rgba(201,162,39,.4);
      text-align: center;
    }
    .akreditasi-badge .grade { font-size: 2.5rem; font-weight: 800; line-height: 1; }
    .akreditasi-badge small { font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; display: block; }

    .tentang-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
    .tentang-list li {
      display: flex; align-items: flex-start; gap: .8rem;
      padding: .9rem 1.2rem; background: var(--putih);
      border-radius: 8px; border-left: 3px solid var(--hijau-terang);
      font-size: .9rem; line-height: 1.6; color: #444;
    }
    .tentang-list li::before { content: '✓'; color: var(--hijau); font-weight: 700; margin-top: .05rem; flex-shrink: 0; }

    /* ── VISI MISI ── */
    #visimisi { padding: 6rem 0; background: var(--hijau); }
    #visimisi .section-label { color: var(--emas-muda); }
    #visimisi .section-heading { color: var(--putih); }
    #visimisi .section-sub { color: rgba(255,255,255,.65); }

    .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
    .vm-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px; padding: 2.5rem;
    }
    .vm-card.visi { border-top: 4px solid var(--emas); }
    .vm-card.misi { border-top: 4px solid var(--hijau-terang); }
    .vm-icon {
      width: 52px; height: 52px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.2rem;
    }
    .vm-card.visi .vm-icon { background: rgba(201,162,39,.2); }
    .vm-card.misi .vm-icon { background: rgba(78,202,127,.15); }
    .vm-card h3 {
      font-family: 'Amiri', serif; font-size: 1.6rem; color: var(--putih); margin-bottom: 1rem;
    }
    .vm-card p, .vm-card li { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.8; }
    .vm-card ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .vm-card ul li { padding-left: 1.2rem; position: relative; }
    .vm-card ul li::before { content: '◆'; position: absolute; left: 0; font-size: .5rem; color: var(--hijau-terang); top: .35em; }

    /* ── PROGRAM STUDI ── */
    #prodi { padding: 6rem 0; background: var(--krem); }
    .prodi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .prodi-card {
      background: var(--putih); border-radius: 16px; overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
    }
    .prodi-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(26,107,58,.15); }
    .prodi-header {
      background: linear-gradient(135deg, var(--hijau) 0%, #0d4425 100%);
      padding: 1.8rem; position: relative; overflow: hidden;
    }
    .prodi-header::after {
      content: ''; position: absolute; top: -30px; right: -30px;
      width: 120px; height: 120px; border-radius: 50%;
      background: rgba(255,255,255,.05);
    }
    .prodi-icon {
      width: 48px; height: 48px; background: rgba(201,162,39,.25);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1rem;
    }
    .prodi-header h3 { color: var(--putih); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: .3rem; }
    .prodi-header .jenjang {
      display: inline-block; background: var(--emas); color: var(--hijau);
      font-size: .7rem; font-weight: 700; padding: .2rem .6rem; border-radius: 4px;
      letter-spacing: .06em;
    }
    .prodi-body { padding: 1.5rem; }
    .prodi-body p { font-size: .85rem; color: #555; line-height: 1.7; margin-bottom: 1.2rem; }
    .prodi-stats { display: flex; gap: 1rem; }
    .prodi-stats span {
      font-size: .78rem; font-weight: 600; color: var(--hijau);
      background: rgba(26,107,58,.07); padding: .3rem .7rem; border-radius: 100px;
    }
    .akreditasi-link {
      display: inline-flex; align-items: center; gap: .45rem;
      font-size: .78rem; font-weight: 700; color: var(--putih);
      background: var(--hijau); padding: .4rem 1rem; border-radius: 100px;
      text-decoration: none; transition: all .25s;
      border: 1.5px solid var(--hijau);
    }
    .akreditasi-link:hover {
      background: var(--emas); color: var(--hijau);
      border-color: var(--emas); transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(201,162,39,.35);
    }
    .akreditasi-link::before { content: '🏅'; font-size: .8rem; }

    /* ── DOSEN ── */
    #dosen { padding: 6rem 0; background: linear-gradient(to bottom, #f0ead8, var(--krem)); }
    .dosen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .dosen-card {
      background: var(--putih); border-radius: 14px; overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      transition: transform .3s;
    }
    .dosen-card:hover { transform: translateY(-5px); }
    .dosen-avatar {
      height: 160px;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; font-weight: 800; font-family: 'Amiri', serif;
    }
    .dosen-card:nth-child(1) .dosen-avatar { background: linear-gradient(135deg,#1a6b3a,#0d4425); color: var(--emas); }
    .dosen-card:nth-child(2) .dosen-avatar { background: linear-gradient(135deg,#c9a227,#a07d1a); color: var(--putih); }
    .dosen-card:nth-child(3) .dosen-avatar { background: linear-gradient(135deg,#2d9657,#1a6b3a); color: var(--emas-muda); }
    .dosen-card:nth-child(4) .dosen-avatar { background: linear-gradient(135deg,#5c3d1e,#3a2410); color: var(--emas); }
    .dosen-info { padding: 1.2rem; }
    .dosen-info h4 { font-size: .9rem; font-weight: 700; color: var(--teks); margin-bottom: .25rem; }
    .dosen-info p { font-size: .78rem; color: #777; line-height: 1.4; }
    .dosen-tag {
      display: inline-block; margin-top: .6rem;
      font-size: .7rem; font-weight: 600; color: var(--hijau);
      background: rgba(26,107,58,.08); padding: .25rem .6rem; border-radius: 4px;
    }

    /* ── FASILITAS ── */
    #fasilitas { padding: 6rem 0; background: var(--krem); }
    .fasilitas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
    .fasilitas-card {
      background: var(--putih); border-radius: 12px; padding: 1.8rem;
      display: flex; align-items: flex-start; gap: 1rem;
      border: 1px solid var(--krem-gelap);
      transition: all .25s;
    }
    .fasilitas-card:hover { border-color: var(--hijau-terang); box-shadow: 0 8px 24px rgba(26,107,58,.1); }
    .fasilitas-icon {
      width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
      background: rgba(26,107,58,.1); display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .fasilitas-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: .3rem; color: var(--hijau); }
    .fasilitas-card p { font-size: .82rem; color: #666; line-height: 1.6; }

    /* ── BERITA ── */
    #berita { padding: 6rem 0; background: #f5efe0; }
    .berita-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .berita-card {
      background: var(--putih); border-radius: 14px; overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      transition: transform .3s;
      display: flex; flex-direction: column;
    }
    .berita-card:hover { transform: translateY(-4px); }
    .berita-img {
      height: 160px; background: linear-gradient(135deg, var(--hijau) 0%, #0a3520 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.8rem; position: relative; overflow: hidden; flex-shrink: 0;
    }
    .berita-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
    }
    .berita-tag {
      position: absolute; bottom: .8rem; left: .8rem; z-index: 2;
      background: var(--emas); color: var(--hijau);
      font-size: .68rem; font-weight: 700; padding: .3rem .7rem; border-radius: 4px;
      letter-spacing: .05em;
    }
    .berita-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
    .berita-meta { font-size: .73rem; color: #999; margin-bottom: .5rem; }
    .berita-body h3 { font-size: .88rem; font-weight: 700; color: var(--teks); line-height: 1.45; margin-bottom: .5rem; flex: 1; }
    .berita-body p { font-size: .82rem; color: #666; line-height: 1.6; }
    .berita-link {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .75rem; font-weight: 700; color: var(--hijau);
      text-decoration: none; margin-top: .8rem;
      border-bottom: 1.5px solid var(--emas); padding-bottom: .1rem;
      transition: color .2s;
      align-self: flex-start;
    }
    .berita-link:hover { color: var(--emas); }

    /* Panel Admin */
    .admin-toggle-btn {
      display: flex; align-items: center; gap: .5rem;
      background: var(--hijau); color: var(--putih);
      border: none; border-radius: 8px; padding: .6rem 1.2rem;
      font-size: .82rem; font-weight: 700; cursor: pointer;
      font-family: inherit; transition: all .2s;
    }
    .admin-toggle-btn:hover { background: #0d4425; transform: translateY(-1px); }

    .admin-panel {
      background: var(--putih); border-radius: 16px;
      border: 2px solid var(--hijau); margin-top: 1.5rem;
      overflow: hidden; display: none;
      box-shadow: 0 8px 32px rgba(26,107,58,.12);
    }
    .admin-panel.open { display: block; }
    .admin-panel-header {
      background: linear-gradient(135deg, var(--hijau), #0d4425);
      padding: 1.2rem 1.8rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .admin-panel-header h4 { color: var(--putih); font-size: .95rem; font-weight: 700; margin: 0; }
    .admin-panel-header span { color: var(--emas-muda); font-size: .78rem; }
    .admin-panel-body { padding: 1.8rem; }
    .admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .admin-field { display: flex; flex-direction: column; gap: .35rem; }
    .admin-field label { font-size: .75rem; font-weight: 700; color: var(--hijau); text-transform: uppercase; letter-spacing: .06em; }
    .admin-field input, .admin-field select, .admin-field textarea {
      border: 1.5px solid var(--krem-gelap); border-radius: 8px;
      padding: .65rem .9rem; font-family: inherit; font-size: .85rem;
      color: var(--teks); outline: none; transition: border-color .2s;
      background: var(--krem);
    }
    .admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus { border-color: var(--hijau); background: var(--putih); }
    .admin-field.full { grid-column: 1 / -1; }
    .admin-actions { display: flex; gap: .8rem; margin-top: 1.2rem; align-items: center; }
    .btn-tambah {
      background: var(--hijau); color: var(--putih);
      border: none; border-radius: 8px; padding: .7rem 1.6rem;
      font-size: .85rem; font-weight: 700; cursor: pointer; font-family: inherit;
      transition: all .2s;
    }
    .btn-tambah:hover { background: #0d4425; transform: translateY(-1px); }
    .btn-reset {
      background: transparent; color: #999;
      border: 1.5px solid #ddd; border-radius: 8px; padding: .7rem 1.2rem;
      font-size: .85rem; font-weight: 600; cursor: pointer; font-family: inherit;
      transition: all .2s;
    }
    .btn-reset:hover { border-color: #bbb; color: #666; }
    .admin-msg { font-size: .8rem; font-weight: 600; color: var(--hijau-muda); display: none; }

    /* Daftar berita di admin */
    .admin-list { margin-top: 1.5rem; border-top: 1.5px solid var(--krem-gelap); padding-top: 1.5rem; }
    .admin-list h5 { font-size: .78rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
    .admin-berita-item {
      display: flex; align-items: center; gap: .8rem;
      padding: .7rem .9rem; border-radius: 8px; background: var(--krem);
      margin-bottom: .6rem; border: 1px solid var(--krem-gelap);
    }
    .admin-berita-item .item-info { flex: 1; min-width: 0; }
    .admin-berita-item .item-judul { font-size: .82rem; font-weight: 700; color: var(--teks); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .admin-berita-item .item-meta { font-size: .71rem; color: #999; margin-top: .1rem; }
    .btn-hapus {
      background: #fff0f0; border: 1px solid #ffcdd2; color: #e53935;
      border-radius: 6px; padding: .35rem .7rem; font-size: .75rem; font-weight: 700;
      cursor: pointer; font-family: inherit; flex-shrink: 0; transition: all .2s;
    }
    .btn-hapus:hover { background: #e53935; color: white; border-color: #e53935; }
    .empty-state { text-align: center; padding: 2rem; color: #bbb; font-size: .85rem; }

    /* ── KONTAK ── */
    #kontak { padding: 6rem 0; background: var(--hijau); }
    #kontak .section-label { color: var(--emas-muda); }
    #kontak .section-heading { color: var(--putih); }
    .kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
    .kontak-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .kontak-item { display: flex; gap: 1rem; align-items: flex-start; }
    .kontak-item-icon {
      width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
      background: rgba(201,162,39,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .kontak-item-text h4 { font-size: .85rem; font-weight: 700; color: var(--emas-muda); margin-bottom: .3rem; }
    .kontak-item-text p { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; }

    .kontak-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .04em; }
    .form-group input, .form-group textarea, .form-group select {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px; padding: .75rem 1rem;
      color: var(--putih); font-family: inherit; font-size: .88rem;
      transition: border-color .2s;
      outline: none;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--emas); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .kontak-form .btn-primer { align-self: flex-start; margin-top: .5rem; }

    /* ── FOOTER ── */
    footer {
      background: #0a2e18; border-top: 2px solid var(--emas);
      padding: 4rem 0 2rem;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
    .footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-top: .8rem; }
    .footer-col h4 { font-size: .82rem; font-weight: 700; color: var(--emas-muda); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
    .footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--emas-muda); }
    .footer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 2.5rem 0 1.5rem; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: .78rem; color: rgba(255,255,255,.35);
    }

    /* ── ANIMASI MASUK ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: .8rem 1.5rem; }
      .nav-links { gap: 1.2rem; }
      .hero-content { grid-template-columns: 1fr; gap: 2rem; }
      .hero-visual { display: none; }
      .tentang-grid, .vm-grid, .kontak-grid { grid-template-columns: 1fr; }
      .prodi-grid { grid-template-columns: 1fr 1fr; }
      .dosen-grid { grid-template-columns: 1fr 1fr; }
      .berita-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .container { padding: 0 1.2rem; }
      .nav-links { display: none; }
      section { padding: 4rem 0; }
      .prodi-grid { grid-template-columns: 1fr; }
      .fasilitas-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
  

      .filter-btn {
        background: var(--putih); border: 1.5px solid var(--krem-gelap);
        color: #555; padding: .45rem 1.1rem; border-radius: 100px;
        font-size: .8rem; font-weight: 600; cursor: pointer;
        transition: all .2s; font-family: inherit;
      }
      .filter-btn:hover, .filter-btn.active {
        background: var(--hijau); color: var(--putih); border-color: var(--hijau);
      }
      .dosen-grid-new {
        display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 1.5rem;
      }
      .dosen-card-new {
        background: var(--putih); border-radius: 12px; overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,.06);
        transition: transform .3s, box-shadow .3s;
        border-top: 3px solid var(--hijau-terang);
      }
      .dosen-card-new.doktor-card { border-top-color: var(--emas); }
      .dosen-card-new:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,107,58,.14); }
      .dosen-card-new.hidden { display: none; }
      .dosen-ava {
        height: 72px; display: flex; align-items: center; justify-content: center;
        font-size: 1.9rem; font-family: 'Amiri', serif; font-weight: 800;
      }
      .dosen-ava.bg-hijau { background: linear-gradient(135deg,var(--hijau),#0a3520); color: var(--emas-muda); }
      .dosen-ava.bg-emas  { background: linear-gradient(135deg,var(--emas),#a07d1a); color: var(--putih); }
      .dosen-ava.bg-teal  { background: linear-gradient(135deg,#2d9657,#1a6b3a); color: var(--emas-muda); }
      .dosen-ava.bg-coklat{ background: linear-gradient(135deg,var(--coklat),#3a2410); color: var(--emas); }
      .dosen-info-new { padding: .9rem; }
      .dosen-info-new h4 { font-size: .8rem; font-weight: 700; color: var(--teks); margin-bottom: .15rem; line-height: 1.35; }
      .dosen-info-new .nidn-txt { font-size: .67rem; color: #999; margin-bottom: .1rem; }
      .dosen-info-new .nuptk-txt { font-size: .67rem; color: #bbb; margin-bottom: .3rem; }
      .dosen-info-new .jab-txt { font-size: .71rem; font-weight: 600; color: var(--hijau); }
      .dosen-info-new .bid-txt {
        display: block; margin-top: .45rem;
        font-size: .67rem; color: #777;
        background: rgba(26,107,58,.07); padding: .2rem .55rem; border-radius: 4px;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      }
      .sertif-dot {
        display: inline-block; width: 7px; height: 7px; border-radius: 50%;
        background: var(--hijau-terang); margin-left: .35rem;
        vertical-align: middle;
      }
      @media (max-width:1024px){ .dosen-grid-new{ grid-template-columns:repeat(3,1fr); } }
      @media (max-width:640px) { .dosen-grid-new{ grid-template-columns:1fr 1fr; } }
    

/* CMS FRONTEND ENHANCEMENTS */
.nav-logo.image{padding:4px;background:#fff}.nav-logo.image img{width:100%;height:100%;object-fit:contain;border-radius:50%}.mobile-toggle{display:none;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:#fff;border-radius:8px;padding:.5rem .7rem;font-size:1.1rem}.scrolled{box-shadow:0 8px 30px rgba(0,0,0,.12)}.quick-section{padding:0 0 4rem;background:var(--krem)}.quick-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;transform:translateY(-28px);position:relative;z-index:8}.quick-card{background:#fff;border:1px solid var(--krem-gelap);border-radius:14px;padding:1.2rem;text-decoration:none;color:var(--teks);display:flex;flex-direction:column;gap:.3rem;box-shadow:0 8px 24px rgba(0,0,0,.05);transition:.25s}.quick-card:hover{transform:translateY(-4px);border-color:var(--emas)}.quick-card>span{font-size:1.5rem}.quick-card b{font-size:.86rem}.quick-card small{font-size:.72rem;color:#888}.announcement-section{padding:5rem 0;background:#fff}.announcement-list{display:grid;gap:1rem;margin-top:2rem}.announcement-item{border:1px solid #e8e3d5;border-left:4px solid var(--emas);border-radius:12px;padding:1.2rem 1.4rem;display:flex;justify-content:space-between;gap:1rem;background:#fffdf8}.announcement-item h3{margin:.45rem 0;font-size:1rem;color:var(--hijau)}.announcement-item p{font-size:.84rem;color:#666;line-height:1.6}.news-category,.pin-badge{display:inline-flex;font-size:.65rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;padding:.25rem .55rem;border-radius:100px;background:rgba(26,107,58,.08);color:var(--hijau)}.pin-badge{background:#fff0c9;color:#806000;margin-left:.4rem}.text-link{align-self:center;white-space:nowrap;color:var(--hijau);font-size:.8rem;font-weight:700;text-decoration:none}.clickable{cursor:pointer}.card-actions{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center}.detail-btn{border:0;background:transparent;color:var(--hijau);font-weight:800;font-size:.78rem;cursor:pointer;padding:.4rem 0}.prodi-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.12}.faculty-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:2rem}.faculty-stats>div{background:#fff;border-radius:12px;padding:1.1rem;border-top:3px solid var(--hijau);text-align:center}.faculty-stats b{display:block;font-size:1.8rem;color:var(--hijau)}.faculty-stats span{font-size:.72rem;color:#777}.lecturer-tools{margin-top:1.2rem}.lecturer-tools input{width:100%;padding:.85rem 1rem;border:1.5px solid var(--krem-gelap);border-radius:10px;font:inherit;background:#fff}.dosen-ava img{width:100%;height:100%;object-fit:cover}.berita-img img{width:100%;height:100%;object-fit:cover}.berita-link.news-detail{background:none;border:0;cursor:pointer}.download-section{padding:5rem 0;background:#fff}.download-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2rem}.download-card{display:flex;gap:1rem;align-items:center;padding:1rem 1.2rem;border:1px solid #e8ece9;border-radius:12px;text-decoration:none;color:var(--teks);background:#fff;transition:.2s}.download-card:hover{border-color:var(--hijau);transform:translateY(-2px)}.download-card>span{font-size:1.4rem}.download-card b,.download-card small{display:block}.download-card b{font-size:.85rem}.download-card small{font-size:.72rem;color:#888;margin-top:.2rem}.gallery-section{padding:5rem 0;background:#f5efe0}.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:2rem}.gallery-grid figure{margin:0;background:#fff;border-radius:12px;overflow:hidden}.gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}.gallery-grid figcaption{padding:.8rem}.gallery-grid b,.gallery-grid small{display:block}.gallery-grid b{font-size:.78rem}.gallery-grid small{font-size:.7rem;color:#888;margin-top:.2rem}.map-frame{width:100%;min-height:240px;border:0;border-radius:12px}.public-alert{background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.2);color:#fff;padding:.75rem 1rem;border-radius:8px}.wa-float{position:fixed;right:20px;bottom:22px;width:54px;height:54px;border-radius:50%;background:#25d366;color:#fff;display:grid;place-items:center;font-weight:900;text-decoration:none;z-index:80;box-shadow:0 8px 25px rgba(0,0,0,.2)}.backtop{position:fixed;right:24px;bottom:88px;width:40px;height:40px;border:0;border-radius:10px;background:#173d27;color:#fff;opacity:0;pointer-events:none;transition:.2s;z-index:80}.backtop.show{opacity:1;pointer-events:auto}.site-modal{position:fixed;inset:0;background:rgba(6,20,12,.72);display:none;align-items:center;justify-content:center;padding:1rem;z-index:200}.site-modal.open{display:flex}.site-modal-card{width:min(680px,100%);max-height:85vh;overflow:auto;background:#fff;border-radius:18px;padding:2rem;position:relative;box-shadow:0 30px 80px rgba(0,0,0,.3)}.modal-close{position:absolute;right:15px;top:12px;border:0;background:#f0f2f1;width:34px;height:34px;border-radius:50%;font-size:1.4rem;cursor:pointer}.site-modal h2{font-family:'Amiri',serif;font-size:2rem;color:var(--hijau);margin:.3rem 0 1rem}.site-modal h3{font-size:.92rem;color:var(--hijau);margin:1.2rem 0 .35rem}.site-modal p{font-size:.86rem;line-height:1.75;color:#555}.modal-kicker{font-size:.7rem;color:var(--emas);font-weight:800;text-transform:uppercase;letter-spacing:.1em}.modal-row{display:flex;justify-content:space-between;gap:2rem;padding:.65rem 0;border-bottom:1px solid #eee;font-size:.8rem}.profile-links{margin-top:1.2rem}.profile-links a{color:var(--hijau);font-weight:700;text-decoration:none}.empty-public{grid-column:1/-1;padding:2rem;text-align:center;color:#999;background:#fff;border-radius:12px}
@media(max-width:1024px){.quick-grid{grid-template-columns:repeat(3,1fr)}.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){nav{padding:.7rem 1rem}.mobile-toggle{display:block}.nav-links{display:none;position:absolute;top:68px;left:12px;right:12px;background:#134e2c;border:1px solid rgba(255,255,255,.12);border-radius:12px;padding:.7rem;flex-direction:column;gap:0}.nav-links.open{display:flex}.nav-links a{padding:.7rem}.quick-grid{grid-template-columns:1fr 1fr;transform:translateY(-15px)}.faculty-stats{grid-template-columns:1fr 1fr}.download-grid,.gallery-grid{grid-template-columns:1fr}.announcement-item{display:block}.text-link{display:inline-block;margin-top:.8rem}.site-modal-card{padding:1.4rem}.footer-bottom{display:block}.footer-bottom span{display:block;margin-top:.5rem}}


/* REVISION: HEADER, VISI-MISI, DOSEN ACCORDION */
.site-header{position:fixed;top:0;left:0;right:0;z-index:120;background:rgba(18,84,45,.97);backdrop-filter:blur(14px);border-bottom:2px solid var(--emas);transition:.25s}.site-header.scrolled{box-shadow:0 10px 28px rgba(0,0,0,.16)}.nav-shell{width:min(1200px,calc(100% - 32px));min-height:72px;margin:auto;display:flex;align-items:center;justify-content:space-between;gap:1.5rem}.nav-brand{text-decoration:none;min-width:0}.nav-title{min-width:0}.nav-title span,.nav-title strong{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.site-header .nav-links{display:flex;gap:1.45rem;align-items:center}.site-header .nav-links a{color:rgba(255,255,255,.88);text-decoration:none;font-size:.82rem;font-weight:600;position:relative;padding:.4rem 0}.site-header .nav-links a:after{content:'';position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--emas);transform:scaleX(0);transition:.2s}.site-header .nav-links a:hover:after{transform:scaleX(1)}.site-header .nav-links a:hover{color:#fff}.site-header .nav-logo{flex:0 0 46px}.hero{padding-top:72px}
.vm-heading{max-width:760px}.vision-panel{margin-top:2.2rem;background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,255,255,.05));border:1px solid rgba(255,255,255,.14);border-left:4px solid var(--emas);border-radius:18px;padding:2rem 2.2rem;display:grid;grid-template-columns:auto 1fr;gap:1.4rem;align-items:start}.vision-panel .vm-icon{margin:0}.vm-eyebrow{display:block;font-size:.7rem;text-transform:uppercase;letter-spacing:.14em;font-weight:800;color:var(--emas-muda);margin-bottom:.65rem}.vision-panel p{margin:0;color:rgba(255,255,255,.88);font-family:'Amiri',serif;font-size:1.2rem;line-height:1.9}.mission-wrap{margin-top:1.5rem;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:2rem}.mission-head{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.25rem}.mission-head h3{margin:0;color:#fff;font-family:'Amiri',serif;font-size:1.7rem}.mission-count{font-size:.72rem;background:rgba(201,162,39,.18);color:var(--emas-muda);padding:.4rem .7rem;border-radius:100px;font-weight:700}.mission-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:.9rem;margin:0;padding:0}.mission-list li{display:grid;grid-template-columns:42px 1fr;gap:.8rem;align-items:start;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.08);padding:1rem;border-radius:12px}.mission-number{width:36px;height:36px;border-radius:10px;background:rgba(201,162,39,.18);color:var(--emas-muda);display:grid;place-items:center;font-size:.72rem;font-weight:800}.mission-list p{margin:0;color:rgba(255,255,255,.78);font-size:.85rem;line-height:1.75}
.lecturer-accordion{display:grid;gap:.75rem;margin-top:1.3rem}.lecturer-item{background:#fff;border:1px solid var(--krem-gelap);border-radius:14px;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.035)}.lecturer-summary{width:100%;border:0;background:#fff;padding:.9rem 1rem;display:grid;grid-template-columns:48px minmax(0,1fr) auto 30px;gap:.9rem;align-items:center;text-align:left;cursor:pointer;font-family:inherit;color:var(--teks)}.lecturer-summary:hover{background:#fbfcfb}.lecturer-mini-avatar{width:48px;height:48px;border-radius:12px;overflow:hidden;background:linear-gradient(135deg,var(--hijau),#0a3520);color:var(--emas-muda);display:grid;place-items:center;font-family:'Amiri',serif;font-size:1.25rem;font-weight:800}.lecturer-mini-avatar img{width:100%;height:100%;object-fit:cover}.lecturer-main{min-width:0}.lecturer-main strong,.lecturer-main small{display:block}.lecturer-main strong{font-size:.9rem}.lecturer-main small{margin-top:.2rem;font-size:.72rem;color:#777;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.lecturer-nidn{font-size:.7rem;color:#888;background:#f5f7f6;border-radius:100px;padding:.3rem .65rem;white-space:nowrap}.accordion-chevron{font-size:1.25rem;color:var(--hijau);transition:transform .2s}.lecturer-summary[aria-expanded="true"] .accordion-chevron{transform:rotate(180deg)}.lecturer-detail{display:none;border-top:1px solid #edf0ee;padding:1rem 1rem 1.2rem;background:#fbfcfb}.lecturer-item.open .lecturer-detail{display:block}.lecturer-detail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem}.lecturer-detail-grid>div{background:#fff;border:1px solid #edf0ee;border-radius:10px;padding:.75rem}.lecturer-detail-grid span,.lecturer-detail-grid b{display:block}.lecturer-detail-grid span{font-size:.65rem;color:#999;text-transform:uppercase;letter-spacing:.06em}.lecturer-detail-grid b{margin-top:.2rem;font-size:.78rem;color:#333}.lecturer-block{margin-top:1rem}.lecturer-block h4{font-size:.78rem;color:var(--hijau);margin:0 0 .35rem}.lecturer-block p{font-size:.8rem;line-height:1.7;color:#666;margin:0}.lecturer-links{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1rem}.lecturer-links a{font-size:.72rem;font-weight:700;text-decoration:none;color:var(--hijau);border:1px solid rgba(26,107,58,.18);border-radius:100px;padding:.4rem .7rem;background:#fff}
@media(max-width:900px){.site-header .nav-links{gap:.85rem}.site-header .nav-links a{font-size:.76rem}.mission-list{grid-template-columns:1fr}.lecturer-detail-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.nav-shell{width:min(100% - 20px,1200px);min-height:66px}.site-header .mobile-toggle{display:block}.site-header .nav-links{display:none;position:absolute;top:66px;left:10px;right:10px;background:#123f26;border:1px solid rgba(255,255,255,.12);border-radius:12px;padding:.7rem;flex-direction:column;align-items:stretch;gap:0;box-shadow:0 16px 40px rgba(0,0,0,.2)}.site-header .nav-links.open{display:flex}.site-header .nav-links a{padding:.7rem .8rem}.hero{padding-top:66px}.vision-panel{grid-template-columns:1fr;padding:1.3rem}.mission-wrap{padding:1.25rem}.mission-head{align-items:center}.lecturer-summary{grid-template-columns:44px minmax(0,1fr) 24px}.lecturer-nidn{display:none}.lecturer-mini-avatar{width:44px;height:44px}.lecturer-detail-grid{grid-template-columns:1fr}.nav-title span:first-child{font-size:.58rem}.nav-title strong{font-size:.82rem;max-width:220px;display:block}}

/* ===== NAVIGATION ICONS + ACTIVE SECTION ===== */
.site-header .nav-links{gap:.55rem}
.site-header .nav-links .nav-item{display:inline-flex;align-items:center;gap:.38rem;padding:.55rem .58rem;border-radius:8px;transition:background .2s,color .2s,transform .2s;white-space:nowrap}
.site-header .nav-links .nav-item svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto;opacity:.82}
.site-header .nav-links .nav-item:hover{background:rgba(255,255,255,.08);transform:translateY(-1px)}
.site-header .nav-links .nav-item.active{color:var(--emas-muda);background:rgba(201,162,39,.12)}
.site-header .nav-links .nav-item.active:after{transform:scaleX(1)}
.site-header .nav-links .nav-item.active svg{opacity:1}
.mobile-toggle{align-items:center;justify-content:center}
.mobile-toggle svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
@media(max-width:1120px){.site-header .nav-links .nav-item span{display:none}.site-header .nav-links .nav-item{padding:.58rem}.site-header .nav-links .nav-item svg{width:17px;height:17px}.site-header .nav-links{gap:.2rem}}
@media(max-width:640px){.site-header .nav-links .nav-item span{display:inline}.site-header .nav-links .nav-item{width:100%;padding:.72rem .8rem;gap:.65rem;border-radius:8px}.site-header .nav-links .nav-item svg{width:18px;height:18px}.site-header .nav-links .nav-item.active{background:rgba(201,162,39,.14)}}


/* ===== HEADER REFINEMENT + DOSEN PAGINATION ===== */
.site-header{background:rgba(13,79,41,.985);border-top:0;border-bottom:1px solid rgba(201,162,39,.72)}
.site-header .nav-shell{width:min(1680px,calc(100% - 48px));min-height:76px;gap:1.35rem}
.site-header .nav-brand{flex:0 0 auto;min-width:270px;max-width:320px;gap:.85rem;padding-right:1rem;border-right:1px solid rgba(255,255,255,.10)}
.site-header .nav-logo{width:50px;height:50px;flex:0 0 50px;box-shadow:0 0 0 4px rgba(201,162,39,.20)}
.site-header .nav-logo.image img{width:100%;height:100%;object-fit:contain;border-radius:50%}
.site-header .nav-title{display:flex;flex-direction:column;justify-content:center;gap:.18rem;line-height:1.15;min-width:0}
.site-header .nav-title span:first-child{font-size:.66rem;line-height:1.2;letter-spacing:.11em;color:var(--emas-muda);max-width:none;overflow:visible;text-overflow:clip}
.site-header .nav-title strong{font-size:.94rem;line-height:1.25;max-width:none;overflow:visible;text-overflow:clip}
.site-header .nav-links{flex:1;justify-content:flex-end;min-width:0;gap:.18rem}
.site-header .nav-links .nav-item{font-size:.78rem;padding:.58rem .48rem;gap:.34rem;border-radius:9px}
.site-header .nav-links .nav-item:after{left:.48rem;right:.48rem;bottom:.28rem}
.site-header .nav-links .nav-item svg{width:14px;height:14px}
.site-header .nav-links .nav-item.active{background:rgba(201,162,39,.13);box-shadow:inset 0 0 0 1px rgba(201,162,39,.08)}
.hero{padding-top:76px}

.lecturer-pagination{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:.4rem;margin-top:1.35rem}
.lecturer-pagination button{min-width:36px;height:36px;padding:0 .65rem;border:1px solid #dfe7e2;border-radius:9px;background:#fff;color:#526057;font-family:inherit;font-size:.78rem;font-weight:700;cursor:pointer;transition:.18s}
.lecturer-pagination button:hover:not(:disabled){border-color:var(--hijau);color:var(--hijau);transform:translateY(-1px)}
.lecturer-pagination button.active{background:var(--hijau);border-color:var(--hijau);color:#fff;box-shadow:0 5px 14px rgba(26,107,58,.16)}
.lecturer-pagination button:disabled{opacity:.38;cursor:not-allowed}
.lecturer-pagination .page-dots{padding:0 .15rem;color:#98a39c}
.lecturer-pagination .page-info{margin-left:.45rem;font-size:.7rem;color:#8a948e}

@media(max-width:1450px){
  .site-header .nav-shell{width:min(100% - 32px,1400px)}
  .site-header .nav-brand{min-width:245px;max-width:275px}
  .site-header .nav-links .nav-item span{display:none}
  .site-header .nav-links .nav-item{padding:.6rem}
  .site-header .nav-links .nav-item svg{width:17px;height:17px}
}
@media(max-width:760px){
  .site-header .nav-shell{width:calc(100% - 20px);min-height:66px}
  .site-header .nav-brand{min-width:0;max-width:calc(100% - 54px);padding-right:0;border-right:0}
  .site-header .nav-logo{width:44px;height:44px;flex-basis:44px}
  .site-header .nav-title span:first-child{font-size:.56rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .site-header .nav-title strong{font-size:.8rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .site-header .nav-links .nav-item span{display:inline}
  .hero{padding-top:66px}
  .lecturer-pagination .page-info{width:100%;margin:.25rem 0 0;text-align:center}
}


/* Isi berita dari Rich Text Editor */
.news-rich-content {
  color: #444;
  font-size: .94rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
}
.news-rich-content p { margin: .75rem 0; }
.news-rich-content h2,
.news-rich-content h3,
.news-rich-content h4 {
  color: var(--hijau);
  line-height: 1.35;
  margin: 1.25rem 0 .55rem;
}
.news-rich-content h2 { font-size: 1.45rem; }
.news-rich-content h3 { font-size: 1.22rem; }
.news-rich-content h4 { font-size: 1.05rem; }
.news-rich-content ul,
.news-rich-content ol {
  padding-left: 1.4rem;
  margin: .8rem 0;
}
.news-rich-content li { margin: .35rem 0; }
.news-rich-content blockquote {
  margin: 1rem 0;
  padding: .8rem 1rem;
  border-left: 4px solid var(--emas);
  background: rgba(201,162,39,.08);
  border-radius: 0 8px 8px 0;
}
.news-rich-content a {
  color: var(--hijau);
  text-decoration: underline;
  font-weight: 600;
}


/* Rich-text alignment: default article body is justified */
.news-rich-content {
  text-align: justify;
  text-justify: inter-word;
}
.news-rich-content p,
.news-rich-content li,
.news-rich-content blockquote {
  text-align: justify;
  text-justify: inter-word;
}
.news-rich-content [data-align="left"] {
  text-align: left !important;
}
.news-rich-content [data-align="center"] {
  text-align: center !important;
}
.news-rich-content [data-align="right"] {
  text-align: right !important;
}
.news-rich-content [data-align="justify"] {
  text-align: justify !important;
  text-justify: inter-word;
}


/* ===== Berita homepage menuju halaman detail ===== */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section-head-row .section-heading { margin-bottom: .55rem; }
.btn-outline-section {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--hijau);
  border: 1.5px solid rgba(26,107,58,.22);
  background: rgba(255,255,255,.55);
  text-decoration: none;
  padding: .72rem 1rem;
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 700;
  transition: .2s ease;
}
.btn-outline-section:hover {
  background: var(--hijau);
  border-color: var(--hijau);
  color: #fff;
}
.berita-img-link { text-decoration: none; }
.berita-body h3 a { color: inherit; text-decoration: none; }
.berita-body h3 a:hover { color: var(--hijau); }
.news-placeholder-icon { position: relative; z-index: 1; }
.news-home-more { display: flex; justify-content: center; margin-top: 2rem; }
@media (max-width:640px) {
  .section-head-row { align-items: flex-start; flex-direction: column; gap: 1rem; }
}

/* Captcha + notifikasi pesan */
.captcha-box{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px 13px;margin:5px 0 12px;border:1px solid rgba(26,107,58,.16);border-radius:9px;background:rgba(26,107,58,.045)}
.captcha-box div{display:flex;flex-direction:column;gap:2px}.captcha-box small{font-size:.56rem;letter-spacing:.09em;font-weight:800;color:#8b8e87}.captcha-box strong{font-size:.82rem;color:var(--hijau)}.captcha-box input{width:105px;text-align:center;font-weight:700}.hp-field{position:absolute;left:-99999px;width:1px;height:1px;overflow:hidden}
.contact-toast{position:fixed;right:22px;bottom:22px;z-index:9999;width:min(370px,calc(100vw - 32px));display:flex;align-items:center;gap:11px;padding:13px 14px;background:#fff;border:1px solid #dfe7e1;border-radius:11px;box-shadow:0 16px 45px rgba(0,0,0,.16);animation:toastIn .3s ease}
.contact-toast .toast-check{width:31px;height:31px;flex:0 0 31px;display:grid;place-items:center;border-radius:50%;background:var(--hijau);color:#fff;font-weight:800}.contact-toast.error .toast-check{background:#a33}.contact-toast div{display:flex;flex:1;flex-direction:column;gap:2px}.contact-toast strong{font-size:.79rem;color:#203128}.contact-toast small{font-size:.68rem;line-height:1.45;color:#727a74}.contact-toast button{border:0;background:transparent;font-size:1.2rem;color:#999;cursor:pointer;padding:3px}
@keyframes toastIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
@media(max-width:520px){.captcha-box{align-items:stretch;flex-direction:column}.captcha-box input{width:100%}.contact-toast{right:16px;bottom:16px}}


/* ===== FIX VISIBILITAS CAPTCHA DI SECTION KONTAK ===== */
#kontak .captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  margin: 7px 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(4px);
}

#kontak .captcha-box > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#kontak .captcha-box small {
  color: var(--emas-muda, #e6c05c);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .11em;
}

#kontak .captcha-box strong {
  color: #ffffff !important;
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.3;
}

#kontak .captcha-box input {
  width: 120px;
  min-width: 120px;
  height: 43px;
  padding: 0 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: #173c27;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  outline: none;
}

#kontak .captcha-box input::placeholder {
  color: #8a918c;
}

#kontak .captcha-box input:focus {
  border-color: var(--emas, #c9a227);
  box-shadow: 0 0 0 3px rgba(201,162,39,.18);
}

@media (max-width: 520px) {
  #kontak .captcha-box {
    align-items: stretch;
    flex-direction: column;
  }

  #kontak .captcha-box input {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   PILIHAN TEMPLATE HOMEPAGE — CMS IAIDU
   ========================================================= */
.home-template-modern { background:#f5f8f6; }
.home-template-modern .hero { min-height:78vh; background:linear-gradient(135deg,var(--hijau),#0f4c2b); }
.home-template-modern .hero-content { max-width:1280px; }
.home-template-modern .stat-card,.home-template-modern .quote-card { border-radius:22px; }
.home-template-modern .prodi-card,.home-template-modern .berita-card,.home-template-modern .fasilitas-card { border-radius:20px; box-shadow:0 12px 34px rgba(20,70,40,.07); }
.home-template-modern section:not(.hero):not(#visimisi):not(#kontak) { background:#f5f8f6; }
.home-template-modern .section-heading { letter-spacing:-.02em; }

.home-template-minimal { background:#fff; }
.home-template-minimal .bg-ornament,.home-template-minimal .hero-pattern { display:none; }
.home-template-minimal .hero { min-height:72vh; background:#fff; border-bottom:1px solid #e7ece8; }
.home-template-minimal .hero h1,.home-template-minimal .hero p { color:#16231b; }
.home-template-minimal .hero h1 em { color:var(--hijau); }
.home-template-minimal .hero-badge { background:transparent; border-color:#dce6df; }
.home-template-minimal .hero-badge span { color:var(--hijau); }
.home-template-minimal .btn-sekunder { color:var(--hijau); border-color:#cbd8cf; }
.home-template-minimal .hero-visual { display:none; }
.home-template-minimal .hero-content { grid-template-columns:1fr; max-width:920px; text-align:left; }
.home-template-minimal section:not(#visimisi):not(#kontak) { background:#fff; }
.home-template-minimal .prodi-card,.home-template-minimal .berita-card,.home-template-minimal .fasilitas-card,.home-template-minimal .vision-panel,.home-template-minimal .mission-wrap { box-shadow:none; border:1px solid #e3e9e5; }

.home-template-editorial { background:#f3efe5; }
.home-template-editorial .hero { min-height:68vh; background:#113c25; }
.home-template-editorial .hero-content { grid-template-columns:1.25fr .75fr; }
.home-template-editorial .hero h1 { font-size:clamp(3.3rem,7vw,6rem); max-width:760px; }
.home-template-editorial .section-heading { font-size:clamp(2.3rem,4vw,3.5rem); }
.home-template-editorial .berita-grid { grid-template-columns:1.5fr 1fr 1fr; align-items:stretch; }
.home-template-editorial .berita-card:first-child { grid-row:span 2; }
.home-template-editorial .berita-card:first-child .berita-img { height:300px; }
.home-template-editorial .berita-card:first-child .berita-body h3 { font-size:1.18rem; }
.home-template-editorial #berita { background:#eee7d8; }
.home-template-editorial .prodi-card { border-radius:4px; }

@media(max-width:900px){
 .home-template-editorial .hero-content{grid-template-columns:1fr}.home-template-editorial .berita-grid{grid-template-columns:1fr 1fr}.home-template-editorial .berita-card:first-child{grid-row:auto}
}
@media(max-width:640px){.home-template-editorial .berita-grid{grid-template-columns:1fr}}

/* ===== Akses Sebaran Mata Kuliah di frontend ===== */
.academic-access-section{padding:1.1rem 0 0;background:transparent}
.academic-access-card{display:flex;align-items:center;gap:1rem;padding:1rem 1.15rem;border:1px solid rgba(26,107,58,.14);border-radius:12px;background:#fff;text-decoration:none;box-shadow:0 8px 26px rgba(35,61,45,.055);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.academic-access-card:hover{transform:translateY(-2px);border-color:rgba(201,162,39,.55);box-shadow:0 12px 32px rgba(35,61,45,.09)}
.academic-access-icon{width:45px;height:45px;flex:0 0 45px;display:grid;place-items:center;border-radius:10px;background:var(--hijau);color:#fff}
.academic-access-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.academic-access-copy{display:flex;flex:1;min-width:0;flex-direction:column;gap:2px}.academic-access-copy small{font-size:.58rem;letter-spacing:.1em;font-weight:800;color:var(--emas)}.academic-access-copy strong{font-size:.9rem;color:var(--hijau)}.academic-access-copy>span{font-size:.72rem;line-height:1.55;color:#757b76}.academic-access-arrow{font-size:1.15rem;color:var(--hijau);font-weight:700}
@media(max-width:520px){.academic-access-card{align-items:flex-start}.academic-access-copy>span{font-size:.68rem}.academic-access-arrow{display:none}}


/* ===== Akses Akademik - compact & integrated ===== */
.academic-access {
  padding: 3.2rem 0 3.7rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(201,162,39,.07), transparent 25%),
    #f7f2e7;
  position: relative;
  overflow: hidden;
}

.academic-access::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26,107,58,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,58,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.academic-access .container {
  position: relative;
  z-index: 1;
}

.academic-access-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.35rem;
}

.academic-access-title {
  margin: .28rem 0 0;
  color: var(--hijau);
  font-family: 'Amiri', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.05;
}

.academic-access-head > p {
  max-width: 430px;
  margin: 0;
  color: #77786f;
  font-size: .78rem;
  line-height: 1.65;
  text-align: right;
}

.academic-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.academic-service-card {
  min-height: 108px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid #e3dac7;
  border-radius: 12px;
  background: rgba(255,255,255,.91);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(47,55,43,.045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.academic-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26,107,58,.35);
  box-shadow: 0 10px 26px rgba(47,55,43,.08);
}

.academic-service-card.primary-service {
  border-color: rgba(26,107,58,.22);
}

.academic-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: rgba(26,107,58,.09);
  color: var(--hijau);
  display: grid;
  place-items: center;
}

.academic-service-card.primary-service .academic-service-icon {
  background: var(--hijau);
  color: #fff;
}

.academic-service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academic-service-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.academic-service-copy small {
  color: var(--emas);
  font-size: .55rem;
  line-height: 1.2;
  letter-spacing: .12em;
  font-weight: 800;
}

.academic-service-copy strong {
  color: var(--hijau);
  font-size: .92rem;
  line-height: 1.35;
}

.academic-service-copy > span {
  color: #7b7c75;
  font-size: .7rem;
  line-height: 1.55;
}

.academic-service-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--hijau);
  background: rgba(26,107,58,.06);
  font-size: .95rem;
  transition: transform .2s ease, background .2s ease;
}

.academic-service-card:hover .academic-service-arrow {
  transform: translateX(2px);
  background: rgba(26,107,58,.11);
}

@media (max-width: 780px) {
  .academic-access {
    padding: 2.5rem 0 3rem;
  }

  .academic-access-head {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .academic-access-head > p {
    max-width: 560px;
    text-align: left;
  }

  .academic-access-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .academic-service-card {
    grid-template-columns: 42px minmax(0,1fr) 24px;
    min-height: 96px;
    padding: 14px;
    gap: 11px;
  }

  .academic-service-icon {
    width: 42px;
    height: 42px;
  }

  .academic-service-copy strong {
    font-size: .86rem;
  }

  .academic-service-copy > span {
    font-size: .66rem;
  }
}
