/* ============================================================
   assets/css/main.css — Website APD FEB UNJ
   Warna mengikuti unj.ac.id: Teal #006569, Emas #E8B84B
   ============================================================ */

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palet warna UNJ */
  --unj-teal:        #006569;
  --unj-teal-gelap:  #004d4f;
  --unj-teal-lebih:  #003d3e;
  --unj-teal-muda:   #e6f0f0;
  --unj-teal-hover:  #007a7d;
  --unj-emas:        #E8B84B;
  --unj-emas-gelap:  #c79b30;
  --unj-emas-muda:   #fdf5e0;

  /* Teks */
  --teks-utama:   #1a1a1a;
  --teks-kedua:   #4a4a4a;
  --teks-muted:   #777777;
  --teks-putih:   #ffffff;

  /* UI */
  --bg-halaman:   #f4f6f5;
  --bg-putih:     #ffffff;
  --border-halus: #d8e5e3;
  --border-kuat:  #b0ccc9;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    14px;

  /* Tipografi */
  --font-utama: 'Segoe UI', 'Inter', Arial, sans-serif;

  /* Transisi */
  --trans: all .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-utama);
  font-size: 15px;
  line-height: 1.7;
  color: var(--teks-utama);
  background: var(--bg-halaman);
}

a { color: var(--unj-teal); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--unj-emas-gelap); }
img { max-width: 100%; height: auto; display: block; }

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--unj-teal-lebih);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 2px solid var(--unj-emas);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--unj-emas); font-weight: 600; margin-left: 16px; }
.topbar a:hover { color: #fff; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  background: var(--unj-teal);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 24px;
}
.nav-brand img.logo-unj {
  height: 46px;
  width: auto;
}
.nav-brand-text { line-height: 1.25; }
.nav-brand-prodi {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}
.nav-brand-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,.75);
}

/* Menu utama */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  gap: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 68px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  border-bottom: 3px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.aktif {
  color: var(--unj-emas);
  border-bottom-color: var(--unj-emas);
  background: rgba(0,0,0,.08);
}
.nav-menu > li > a .chevron {
  font-size: 10px;
  opacity: .75;
  transition: transform .2s;
}
.nav-menu > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 220px;
  background: var(--bg-putih);
  border-top: 3px solid var(--unj-emas);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--trans);
  z-index: 999;
}
.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-group { padding: 8px 0; }
.dropdown-group-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--unj-teal);
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 6px 18px 4px;
}
.dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--teks-kedua);
  border-left: 3px solid transparent;
  transition: var(--trans);
}
.dropdown a:hover {
  background: var(--unj-teal-muda);
  border-left-color: var(--unj-teal);
  color: var(--unj-teal-gelap);
}
.dropdown hr { border: none; border-top: 1px solid var(--border-halus); margin: 4px 0; }

/* Tombol kanan navbar */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  flex-shrink: 0;
}
.btn-lang {
  padding: 4px 10px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  transition: var(--trans);
}
.btn-lang.aktif,
.btn-lang:hover {
  background: var(--unj-emas);
  border-color: var(--unj-emas);
  color: var(--unj-teal-lebih);
}
.btn-search-nav {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  padding: 6px;
  opacity: .85;
  transition: var(--trans);
}
.btn-search-nav:hover { opacity: 1; color: var(--unj-emas); }

/* Mobile hamburger */
.btn-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

/* ── Container ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--unj-teal-gelap);
  height: 480px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.slide.aktif { opacity: 1; z-index: 1; }
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,83,75,.82) 0%, rgba(0,83,75,.45) 60%, transparent 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  z-index: 2;
  max-width: 620px;
}
.slide-badge {
  display: inline-block;
  background: var(--unj-emas);
  color: var(--unj-teal-lebih);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
  width: fit-content;
}
.slide-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.slide-sub {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  line-height: 1.6;
}
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--unj-emas);
  color: var(--unj-teal-lebih);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 30px;
  width: fit-content;
  transition: var(--trans);
}
.slide-btn:hover {
  background: #fff;
  color: var(--unj-teal-gelap);
}

/* Dots navigasi slider */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.slider-dot.aktif {
  background: var(--unj-emas);
  width: 24px;
  border-radius: 4px;
}

/* Tombol prev/next */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.25);
  border: none;
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.slider-nav:hover { background: var(--unj-emas); color: var(--unj-teal-lebih); }
.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }

/* ── Quick links ─────────────────────────────────────────── */
.quicklinks {
  background: var(--bg-putih);
  border-bottom: 1px solid var(--border-halus);
  padding: 12px 0;
  border-top: 3px solid var(--unj-emas);
}
.quicklinks .container {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.ql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  min-width: 80px;
}
.ql-item:hover { background: var(--unj-teal-muda); }
.ql-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--unj-teal-muda);
  display: flex; align-items: center; justify-content: center;
  color: #ff6000;
  font-size: 50px;
  transition: var(--trans);
}
.ql-item:hover .ql-icon {
  background: var(--unj-teal);
  color: #fff;
}
.ql-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--unj-teal-gelap);
  text-align: center;
  line-height: 1.2;
}

/* ── Section umum ────────────────────────────────────────── */
.section { padding: 52px 0; }
.section-alt { background: var(--unj-teal-muda); }
.section-white { background: var(--bg-putih); }

.section-header { margin-bottom: 30px; }
.section-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--unj-teal);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--unj-teal-gelap);
  line-height: 1.3;
}
.gold-bar {
  width: 44px;
  height: 4px;
  background: var(--unj-emas);
  border-radius: 2px;
  margin-top: 10px;
}
.section-header.center { text-align: center; }
.section-header.center .gold-bar { margin: 10px auto 0; }

/* ── Berita grid ─────────────────────────────────────────── */
.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.berita-card {
  background: var(--bg-putih);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-halus);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.berita-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,115,103,.12);
  border-color: var(--unj-teal);
}
.berita-card-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  background: var(--unj-teal-muda);
}
.berita-card-img-placeholder {
  height: 180px;
  background: var(--unj-teal-muda);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--unj-teal);
  font-size: 32px;
}
.berita-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.berita-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--unj-teal-muda);
  color: var(--unj-teal);
  margin-bottom: 8px;
}
.berita-cat.intl { background: #e8f0fe; color: #1a56db; }
.berita-cat.prestasi { background: #f0fdf4; color: #16a34a; }
.berita-cat.pengumuman { background: var(--unj-emas-muda); color: var(--unj-emas-gelap); }
.berita-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--teks-utama);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 10px;
}
.berita-card-title a { color: inherit; }
.berita-card-title a:hover { color: var(--unj-teal); }
.berita-meta {
  font-size: 11px;
  color: var(--teks-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ── Statistik counter ───────────────────────────────────── */
.stats-section { background: var(--unj-teal-gelap); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 24px 12px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--unj-emas);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }

/* ── Internasionalisasi ──────────────────────────────────── */
.intl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.intl-card {
  background: var(--bg-putih);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--unj-teal);
  padding: 16px 18px;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  display: block;
}
.intl-card:hover {
  border-left-color: var(--unj-emas);
  background: var(--unj-teal-muda);
  transform: translateX(4px);
}
.intl-tipe {
  font-size: 10px;
  font-weight: 800;
  color: var(--unj-emas-gelap);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}
.intl-judul {
  font-size: 14px;
  font-weight: 700;
  color: var(--unj-teal-gelap);
  margin-bottom: 4px;
}
.intl-angka { font-size: 12px; color: var(--teks-muted); }

/* Partner logos */
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.partner-pill {
  border: 1.5px solid var(--border-kuat);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--unj-teal);
  background: var(--bg-putih);
  transition: var(--trans);
}
.partner-pill:hover {
  background: var(--unj-teal);
  color: #fff;
  border-color: var(--unj-teal);
}

/* ── Dosen card ──────────────────────────────────────────── */
.dosen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dosen-card {
  background: var(--bg-putih);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-halus);
  padding: 20px 16px;
  text-align: center;
  transition: var(--trans);
}
.dosen-card:hover {
  box-shadow: 0 6px 20px rgba(0,115,103,.12);
  border-color: var(--unj-teal);
}
.dosen-foto {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--unj-teal-muda);
}
.dosen-nama { font-size: 13px; font-weight: 700; color: var(--teks-utama); margin-bottom: 4px; }
.dosen-jabatan { font-size: 11px; color: var(--unj-teal); font-weight: 600; }
.dosen-links { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.dosen-link-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--unj-teal-muda);
  display: flex; align-items: center; justify-content: center;
  color: var(--unj-teal);
  font-size: 13px;
  transition: var(--trans);
}
.dosen-link-btn:hover { background: var(--unj-teal); color: #fff; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--unj-teal-gelap);
  color: rgba(255,255,255,.85);
  padding: 48px 0 0;
  border-top: 4px solid var(--unj-emas);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 14px;
}
.footer-prodi-nama {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.footer-univ-nama {
  font-size: 12px;
  color: rgba(255,255,255,.82);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.90);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-sosmed { display: flex; gap: 8px; }
.sosmed-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  transition: var(--trans);
  text-decoration: none;
}
.sosmed-btn:hover { background: var(--unj-emas); color: var(--unj-teal-lebih); }

.footer-heading {
  font-size: 12px;
  font-weight: 800;
  color: var(--unj-emas);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-link {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.88);
  padding: 4px 0;
  transition: var(--trans);
  text-decoration: none;
}
.footer-link:hover { color: var(--unj-emas); padding-left: 4px; }

.footer-bottom {
  background: var(--unj-teal-lebih);
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 14px 0;
  margin-top: 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.72); }
.footer-unj-link {
  font-size: 12px;
  color: var(--unj-emas);
  font-weight: 600;
  text-decoration: none;
}
.footer-unj-link:hover { color: #fff; }

/* ── Tombol umum ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--unj-teal); color: #fff; border-color: var(--unj-teal); }
.btn-primary:hover { background: var(--unj-teal-gelap); border-color: var(--unj-teal-gelap); color: #fff; }
.btn-emas { background: var(--unj-emas); color: var(--unj-teal-lebih); border-color: var(--unj-emas); }
.btn-emas:hover { background: var(--unj-emas-gelap); border-color: var(--unj-emas-gelap); color: #fff; }
.btn-outline { background: transparent; color: var(--unj-teal); border-color: var(--unj-teal); }
.btn-outline:hover { background: var(--unj-teal); color: #fff; }

/* ── Badge & label ───────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.badge-teal    { background: var(--unj-teal-muda); color: var(--unj-teal); }
.badge-emas    { background: var(--unj-emas-muda); color: var(--unj-emas-gelap); }
.badge-intl    { background: #e8f0fe; color: #1a56db; }
.badge-success { background: #f0fdf4; color: #15803d; }

/* ── Flash message ───────────────────────────────────────── */
.flash {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.flash-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.flash-error   { background: #fff1f2; color: #b91c1c; border: 1px solid #fecdd3; }
.flash-warning { background: var(--unj-emas-muda); color: #92400e; border: 1px solid #fde68a; }
.flash-info    { background: var(--unj-teal-muda); color: var(--unj-teal-gelap); border: 1px solid var(--border-kuat); }
.flash-icon    { font-size: 16px; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--bg-putih);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-halus);
  font-size: 12.5px;
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; }
.breadcrumb li + li::before { content: '›'; color: var(--teks-muted); }
.breadcrumb a { color: var(--unj-teal); }
.breadcrumb .aktif { color: var(--teks-muted); }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.page-btn {
  min-width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-halus);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--teks-kedua);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  background: var(--bg-putih);
}
.page-btn:hover, .page-btn.aktif {
  background: var(--unj-teal);
  border-color: var(--unj-teal);
  color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .berita-grid   { grid-template-columns: repeat(2, 1fr); }
  .dosen-grid    { grid-template-columns: repeat(3, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-right { display: none; }
  .btn-hamburger { display: block; }
  .hero-slider   { height: 320px; }
  .slide-content { padding: 0 24px; }
  .slide-title   { font-size: 20px; }
  .berita-grid   { grid-template-columns: 1fr; }
  .dosen-grid    { grid-template-columns: repeat(2, 1fr); }
  .intl-grid     { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .container     { padding: 0 14px; }
}

@media (max-width: 480px) {
  .dosen-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .section     { padding: 32px 0; }
  .hero-slider { height: 260px; }
}

/* Footer contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  font-size: 12.5px;
  color: rgba(255,255,255,.88);
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--unj-emas); }
.footer-contact .ti { color: var(--unj-emas); flex-shrink: 0; margin-top: 2px; }

/* Footer links list (ul.footer-links) */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li a {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.88);
  padding: 4px 0;
  transition: color .2s, padding-left .2s;
  text-decoration: none;
}
.footer-links li a:hover {
  color: var(--unj-emas);
  padding-left: 4px;
}

/* Footer sosmed button */
.footer-sosmed a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  transition: all .2s;
  text-decoration: none;
}
.footer-sosmed a:hover {
  background: var(--unj-emas);
  color: var(--unj-teal-lebih);
  transform: translateY(-2px);
}
