/* ==========================================================
   SMPN 1 — header.css
   Prefix: umh-  (UM-style Header)
   Root variables diletakkan di sini agar bisa dipakai
   komponen lain tanpa perlu redefinisi.
   ========================================================== */

/* ── ROOT VARIABLES (jangan diubah-ubah) ── */

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Warna utama */
  --clr-navy:        #1B3A6B;   /* navy gelap — topbar, footer */
  --clr-navy-mid:    #2A4A80;   /* navy medium — navbar row */
  --clr-navy-dark:   #102448;   /* navy paling gelap */
  --clr-teal:        #2E8B74;   /* hijau teal — section inovasi */
  --clr-teal-dark:   #1d6b58;
  --clr-yellow:      #F5D000;   /* kuning UM */
  --clr-yellow-dark: #d4b300;
  --clr-white:       #ffffff;
  --clr-off-white:   #f7f7f7;
  --clr-light:       #eeeeee;
  --clr-border:      #d8d8d8;
  --clr-dark:        #1a1a1a;
  --clr-gray:        #555555;  
  --ummt-bg:       #2a6e7f;

  /* Tipografi */
  --font-main: 'Albert Sans', 'Open Sans', 'Segoe UI', Arial, sans-serif;

  /* Ukuran header */
  --umh-topbar-h:  72px;  /* tinggi baris logo */
  --umh-navbar-h:  44px;  /* tinggi baris menu */
  --umh-total-h:   calc(var(--umh-topbar-h) + var(--umh-navbar-h));

  /* Transisi */
  --ease: 0.22s ease;
}

/* ── RESET SCOPED ── */
.umh-header *, .umh-header *::before, .umh-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.umh-header a { text-decoration: none; color: inherit; }
.umh-header ul { list-style: none; }
.umh-header button { cursor: pointer; border: none; background: none; }

/* ══════════════════════════════════════════
   WRAPPER HEADER
   ══════════════════════════════════════════ */
.umh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: var(--font-main);
  width: 100%;
}

/* ══════════════════════════════════════════
   BARIS 1 — TOPBAR (navy gelap)
   ══════════════════════════════════════════ */
.umh-topbar {
  background: var(--clr-navy);
  height: var(--umh-topbar-h);
  display: flex;
  align-items: center;
  padding: 64px 0;
}
.umh-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo + nama */
.umh-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.umh-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.umh-school-name {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.umh-school-name span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
}
.umh-school-name span:last-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
}

/* Kanan: sosmed + bahasa + search */
.umh-topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.umh-social-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
}
.umh-social-icons a {
  color: rgba(255,255,255,.9);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
}
.umh-social-icons a:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,.12);
}

/* Divider vertikal */
.umh-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.25);
  margin: 0 6px;
}

/* Tombol bahasa */
.umh-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  transition: background var(--ease);
  white-space: nowrap;
}
.umh-lang-btn:hover { background: rgba(255,255,255,.12); }
.umh-lang-btn img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.umh-lang-btn i { font-size: 10px; opacity: .7; }

/* Tombol search */
.umh-search-btn {
  color: rgba(255,255,255,.8);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
  margin-left: 4px;
}
.umh-search-btn:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,.12);
}

/* Search bar (collapse/expand) */
.umh-search-bar {
  position: absolute;
  top: var(--umh-topbar-h);
  left: 0;
  right: 0;
  background: var(--clr-navy-dark);
  padding: 12px 24px;
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 999;
}
.umh-search-bar.open { display: flex; }
.umh-search-bar input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: var(--clr-white);
  font-size: 14px;
  font-family: var(--font-main);
  border-radius: 3px;
  outline: none;
}
.umh-search-bar input::placeholder { color: rgba(255,255,255,.5); }
.umh-search-bar button {
  background: var(--clr-yellow);
  color: var(--clr-navy-dark);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  font-family: var(--font-main);
  transition: background var(--ease);
}
.umh-search-bar button:hover { background: var(--clr-yellow-dark); }

/* ══════════════════════════════════════════
   BARIS 2 — NAVBAR (navy medium)
   ══════════════════════════════════════════ */
.umh-navbar {
  background: var(--clr-navy-mid);
  height: var(--umh-navbar-h);
  position: relative;
}
.umh-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: stretch;
    justify-content: center;
}

/* Nav menu */
.umh-nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

/* Nav item */
.umh-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.umh-nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
  border-bottom: 3px solid transparent;
  font-weight: 700;
   text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.umh-nav-item > a .umh-chevron {
  font-size: 9px;
  opacity: .7;
  transition: transform .22s;
}
.umh-nav-item:hover > a,
.umh-nav-item.umh-active > a {
  background: rgba(255,255,255,.08);
  color: var(--clr-white);
}
.umh-nav-item.umh-active > a {
  font-weight: 700;
  border-bottom-color: var(--clr-yellow);
}
.umh-nav-item:hover > a .umh-chevron { transform: rotate(180deg); }

/* ── SUBMENU LEVEL 1 ── */
.umh-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--clr-navy);
  border-top: 3px solid var(--clr-yellow);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  z-index: 900;
}
.umh-nav-item:hover > .umh-submenu { display: block; }

.umh-submenu li {
  position: relative;
}
.umh-submenu li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--ease), color var(--ease), padding var(--ease);
  white-space: nowrap;
}
.umh-submenu li:last-child > a { border-bottom: none; }
.umh-submenu li > a:hover {
  background: rgba(255,255,255,.1);
  color: var(--clr-white);
  padding-left: 22px;
}
.umh-submenu li > a .umh-chevron-right {
  font-size: 9px;
  opacity: .6;
}

/* ── SUBMENU LEVEL 2 (sub-sub menu) ── */
.umh-submenu-2 {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  background: var(--clr-navy-dark);
  border-top: 3px solid var(--clr-teal);
  box-shadow: 6px 6px 24px rgba(0,0,0,.28);
  z-index: 901;
}
.umh-submenu li:hover > .umh-submenu-2 { display: block; }

.umh-submenu-2 li > a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--ease), color var(--ease), padding var(--ease);
  white-space: nowrap;
}
.umh-submenu-2 li:last-child > a { border-bottom: none; }
.umh-submenu-2 li > a:hover {
  background: rgba(255,255,255,.1);
  color: var(--clr-white);
  padding-left: 22px;
}

/* ══════════════════════════════════════════
   HAMBURGER (mobile)
   ══════════════════════════════════════════ */
.umh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: absolute;
  right: 16px;
  top: 64px;
  transform: translateY(-50%);
  z-index: 1001;
}
.umh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 1px;
  transition: var(--ease);
}
.umh-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.umh-hamburger.open span:nth-child(2) { opacity: 0; }
.umh-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBILE — drawer overlay
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Topbar: hide sosmed di mobile kecil */
  .umh-social-icons { display: none; }
  .umh-divider { display: none; }

  /* Hamburger muncul */
  .umh-hamburger { display: flex; }

  /* Navbar jadi drawer */
  .umh-navbar {
    height: auto;
    position: static;
  }
  .umh-navbar-inner {
    height: auto;
    padding: 0;
  }
  .umh-nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    background: var(--clr-navy);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .umh-nav-menu.open { display: flex;width: 100%; }

  /* Setiap item jadi baris penuh */
  .umh-nav-item { flex-direction: column; align-items: stretch; }
  .umh-nav-item > a {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid transparent;
    font-size: 14px;
  }
  .umh-nav-item > a:hover,
  .umh-nav-item.umh-active > a {
    border-left-color: var(--clr-yellow);
    border-bottom-color: rgba(255,255,255,.08);
    background: rgba(255,255,255,.07);
  }
  .umh-nav-item.umh-active > a { border-bottom-color: rgba(255,255,255,.08); }

  /* Submenu L1 — static, tersembunyi toggle */
  .umh-submenu {
    display: none;
    position: static;
    border-top: none;
    box-shadow: none;
    background: rgba(0,0,0,.18);
    min-width: auto;
    border-left: 3px solid var(--clr-yellow);
    margin-left: 16px;
  }
  .umh-nav-item.umh-open > .umh-submenu { display: block; }
  .umh-submenu li > a { padding-left: 20px; font-size: 13px; }

  /* Submenu L2 — static, tersembunyi toggle */
  .umh-submenu-2 {
    display: none;
    position: static;
    border-top: none;
    box-shadow: none;
    background: rgba(0,0,0,.15);
    min-width: auto;
    border-left: 3px solid var(--clr-teal);
    margin-left: 16px;
  }
  .umh-submenu li.umh-open > .umh-submenu-2 { display: block; }
  .umh-submenu-2 li > a { padding-left: 20px; font-size: 12.5px; }

  /* Hapus hover trigger di mobile, pakai click */
  .umh-nav-item:hover > .umh-submenu { display: none; }
  .umh-submenu li:hover > .umh-submenu-2 { display: none; }
  .umh-nav-item.umh-open > .umh-submenu { display: block; }
  .umh-submenu li.umh-open > .umh-submenu-2 { display: block; }

  /* Chevron rotate di mobile */
  .umh-nav-item.umh-open > a .umh-chevron { transform: rotate(180deg); }
  .umh-submenu li.umh-open > a .umh-chevron-right { transform: rotate(90deg); }

  .umh-topbar-right{
    margin-right: 40px;
  }
}

@media (max-width: 480px) {
  .umh-school-name span { font-size: 15px; }
  .umh-logo { height: 42px; width: 42px; }
  .umh-topbar { height: 60px; }
  :root { --umh-topbar-h: 60px; }
}


/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.umhero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--clr-navy-dark);
  font-family: var(--font-main);
  text-shadow: 0em 0.1em 0.1em #000000;
}

/* ── VIDEO WRAPPER (YouTube iframe trick) ── */
.umhero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;   /* klik tembus ke konten di atas */
  overflow: hidden;
}

/*
  YouTube iframe harus di-scale besar agar memenuhi layar
  apapun aspect ratio-nya (16:9 vs viewport berbeda).
  Pakai teknik: lebarkan 178vh (karena 16/9 * 100vh),
  lalu geser ke tengah.
*/
.umhero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Paksa cover seluruh area */
  width: 100vw;
  height: 56.25vw;   /* 100vw / 16 * 9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 100vh * 16/9 */
  border: none;
  opacity: 1;
}

/* ── OVERLAY tipis — persis seperti UM (nyaris tidak gelap) ── */
.umhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 50, 0.22);
  z-index: 1;
}

/* ── KONTEN TENGAH ── */
.umhero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  /* Geser sedikit ke atas dari tengah — persis seperti UM */
  padding-bottom: 80px;
}

.umhero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  letter-spacing: -0.5px;
}

.umhero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.umhero-subtitle a{
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
    text-decoration: none;
}

/* ── TOMBOL PILL — persis UM ── */
.umhero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.umhero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 999px;          /* full pill */
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.umhero-btn-primary {
  background: var(--clr-navy);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.umhero-btn-primary:hover {
  background: var(--clr-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

.umhero-btn-secondary {
  background: var(--clr-navy);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.umhero-btn-secondary:hover {
  background: var(--clr-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

/* ══════════════════════════════════════════
   FALLBACK: jika iframe tidak load
   ══════════════════════════════════════════ */
.umhero-fallback-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://smpn1simpangempat.sch.id/upload/upload-website/imagecache/1759925463p20200606095501-900x675.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .umhero-section { height: 100svh; }
  .umhero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .umhero-subtitle, .umhero-subtitle a { font-size: clamp(0.85rem, 3.5vw, 1rem); margin-bottom: 28px; }
  .umhero-btn { padding: 11px 24px; font-size: 14px; }
     /* sembunyikan label di mobile */
  
}

@media (max-width: 400px) {
  .umhero-buttons { flex-direction: column; align-items: center; }
  .umhero-btn { width: 100%; max-width: 260px; justify-content: center; }
}


.umql-section *, .umql-section *::before, .umql-section *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.umql-section a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════
   WRAPPER
   ══════════════════════════════════════════ */
.umql-section {
  font-family: var(--font-main);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Background mascot wallpaper — transparan seperti UM */
.umql-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(27,58,107,0.045) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(46,139,116,0.045) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Tiled mascot background (pakai emoji besar transparan) */
.umql-bg-mascots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  gap: 0;
}
.umql-bg-mascots span {
  font-size: 110px;
  opacity: 0.055;
  user-select: none;
  line-height: 1;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   GRID ITEM
   ══════════════════════════════════════════ */
.umql-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.umql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* label di bawah, mascot di atas */
  gap: 0;
  padding: 10px 10px 0;
  flex: 1;
  min-width: 250px;
  max-width: 250px;
  cursor: pointer;
  transition: background var(--ease);
  position: relative;
}
.umql-item:last-child { border-right: none; }
.umql-item:hover { background: rgba(27,58,107,0.04); }

/* Label teks — di atas mascot (tapi layout flex column, jadi label di bawah mascot) */
/* Seperti UM: teks dulu (atas), lalu gambar mascot (bawah, lebih besar) */
.umql-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-navy);
  text-align: center;
  line-height: 1.35;
  padding: 12px 4px 8px;
  order: 1; /* label tampil di atas */
}

/* Mascot figure — bawah, lebih besar, sedikit overflow ke atas */
.umql-mascot {
  order: 2; /* mascot tampil di bawah */
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 4px;
}

/* Ilustrasi mascot pakai SVG inline / emoji besar */
.umql-mascot-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}
.umql-item:hover .umql-mascot-img {
  transform: translateY(-6px) scale(1.05);
}

/* SVG ilustrasi — tiap mascot punya warna beda */
.umql-mascot-svg {
  width: 90px;
  height: 90px;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}
.umql-item:hover .umql-mascot-svg {
  transform: translateY(-6px) scale(1.06);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .umql-grid { flex-wrap: wrap; }
  .umql-item { min-width: 80px; max-width: 120px; flex: 1 1 18%; }
  .umql-mascot-svg, .umql-mascot-img { width: 70px; height: 70px; }
}
@media (max-width: 600px) {
  .umql-item { min-width: 70px; flex: 1 1 30%; }
  .umql-label { font-size: 11px; }
  .umql-mascot-svg, .umql-mascot-img { width: 60px; height: 60px; }
  .umql-bg-mascots span { font-size: 80px; }
}


.umbt-section *, .umbt-section *::before, .umbt-section *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.umbt-section a { text-decoration: none; color: inherit; }
.umbt-section ul { list-style: none; }
.umbt-section button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }

/* ══════════════════════════════════════════
   WRAPPER — gradient background
   ══════════════════════════════════════════ */
.umbt-section {
  font-family: var(--font-main);
  background: linear-gradient(
    180deg,
    #29b6d8 0%,
    #2ec4a0 25%,
    #6dd672 60%,
    #c8e03a 100%
  );
  padding: 48px 0 56px;
}

.umbt-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   SECTION TITLE — garis kiri-kanan
   ══════════════════════════════════════════ */
.umbt-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.umbt-title-line {
  flex: 1;
  height: 1.5px;
  background: rgba(0,0,0,0.2);
}
.umbt-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════
   SLIDER BERITA UTAMA
   ══════════════════════════════════════════ */
.umbt-slider-wrap {
  position: relative;
  background: white;
  overflow: hidden;
  width: 100%;
}

/* Track — flex, tidak boleh wrap, lebar mengikuti parent */
.umbt-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* Tiap slide: paksa lebar = 100% wrapper, tidak menyusut */
.umbt-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.umbt-slide-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.umbt-slide-body {
  padding: 20px 24px 16px;
  background: white;
}
.umbt-slide-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.4;
}
.umbt-slide-title:hover { color: var(--clr-navy); }
.umbt-slide-date {
  font-size: 12.5px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.umbt-slide-date::before {
  content: '|';
  color: #bbb;
  font-weight: 300;
}
.umbt-slide-excerpt {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Prev/next — menempel di sisi foto, tinggi = tinggi gambar */
.umbt-prev, .umbt-next {
  position: absolute;
  top: 0;
  height: 380px;
  width: 40px;
  z-index: 10;
  background: rgba(0,0,0,0.22);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
}
.umbt-prev { left: 0; }
.umbt-next { right: 0; }
.umbt-prev:hover, .umbt-next:hover { background: rgba(0,0,0,0.45); }

/* Dots navigator */
.umbt-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 8px;
  background: white;
}
.umbt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background var(--ease), transform var(--ease);
  cursor: pointer;
  border: none;
}
.umbt-dot.active {
  background: var(--clr-navy);
  transform: scale(1.2);
}

/* Tombol Lihat Selengkapnya — pill kuning */
.umbt-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 26px;
  background: var(--clr-yellow);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}
.umbt-btn-more:hover {
  background: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.16);
}
.umbt-btn-more i { font-size: 13px; }

/* ══════════════════════════════════════════
   3 KOLOM BAWAH (Inovasi / Alumni / Opini)
   ══════════════════════════════════════════ */
.umbt-cols-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.umbt-col { display: flex; flex-direction: column; }

/* Sub-title kolom — garis dekoratif kiri-kanan */
.umbt-col-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.umbt-col-title-line {
  flex: 1;
  height: 1.5px;
  background: rgba(0,0,0,0.2);
}
.umbt-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Kartu artikel kolom */
.umbt-col-card { flex: 1; display: flex; flex-direction: column; }
.umbt-col-img-wrap {
  overflow: hidden;
  margin-bottom: 14px;
}
.umbt-col-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.umbt-col-card:hover .umbt-col-img { transform: scale(1.04); }

.umbt-col-article-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  margin-bottom: 6px;
}
.umbt-col-article-title:hover { color: var(--clr-navy); }

.umbt-col-date {
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.umbt-col-date::before { content: '|'; color: #bbb; font-weight: 300; }

.umbt-col-excerpt {
  font-size: 12.5px;
  color: #444;
  line-height: 1.7;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 18px;
}

/* Tombol per-kolom */
.umbt-btn-col {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--clr-yellow);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  align-self: flex-start;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.umbt-btn-col:hover {
  background: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .umbt-cols-wrap { grid-template-columns: 1fr; gap: 36px; }
  .umbt-slide-img { height: 260px; }
  .umbt-prev, .umbt-next { height: 260px; }
}
@media (max-width: 600px) {
  .umbt-title { font-size: 17px; }
  .umbt-slide-img { height: 200px; }
  .umbt-prev, .umbt-next { height: 200px; width: 32px; font-size: 13px; }
  .umbt-slide-body { padding: 14px 16px 8px; }
  .umbt-slide-title { font-size: 15px; }
  .umbt-col-img { height: 200px; }
}

/* ══════════════════════════════════════════
   SUB-SECTION: KAMPUS BERDAMPAK / AGENDA / PENGUMUMAN
   3 panel warna berbeda — flush, no gap
   ══════════════════════════════════════════ */
.umbt-panels-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  /* Tidak ada gap — panel flush seperti UM */
}

/* Panel base */
.umbt-panel {
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
}

/* Warna tiap panel */
.umbt-panel--navy   { background: var(--clr-navy); }
.umbt-panel--green  { background: #3aaa6e; }
.umbt-panel--yellow { background: #e8a800; }

/* Judul panel — garis kiri-kanan */
.umbt-panel-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.umbt-panel-title-line {
  flex: 1;
  height: 1.5px;
}
.umbt-panel--navy   .umbt-panel-title-line { background: rgba(255,255,255,0.25); }
.umbt-panel--green  .umbt-panel-title-line { background: rgba(255,255,255,0.25); }
.umbt-panel--yellow .umbt-panel-title-line { background: rgba(0,0,0,0.15); }

.umbt-panel-title {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.umbt-panel--navy   .umbt-panel-title { color: var(--clr-white); }
.umbt-panel--green  .umbt-panel-title { color: var(--clr-yellow); }
.umbt-panel--yellow .umbt-panel-title { color: var(--clr-navy); }

/* List item */
.umbt-panel-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.umbt-panel-item {
  padding: 12px 0;
  border-bottom: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.umbt-panel--navy   .umbt-panel-item { border-bottom-color: rgba(255,255,255,0.12); }
.umbt-panel--green  .umbt-panel-item { border-bottom-color: rgba(255,255,255,0.15); }
.umbt-panel--yellow .umbt-panel-item { border-bottom-color: rgba(0,0,0,0.1); }

.umbt-panel-item:first-child { padding-top: 0; }
.umbt-panel-item:last-child  { border-bottom: none; }

/* Judul artikel dalam panel */
.umbt-panel-art-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  transition: opacity 0.2s;
}
.umbt-panel-art-title:hover { opacity: 0.75; }
.umbt-panel--navy   .umbt-panel-art-title { color: var(--clr-white); }
.umbt-panel--green  .umbt-panel-art-title { color: var(--clr-yellow); }
.umbt-panel--yellow .umbt-panel-art-title { color: var(--clr-navy); }

/* Tanggal */
.umbt-panel-date {
  font-size: 11.5px;
}
.umbt-panel--navy   .umbt-panel-date { color: rgba(255,255,255,0.55); }
.umbt-panel--green  .umbt-panel-date { color: rgba(255,255,255,0.65); }
.umbt-panel--yellow .umbt-panel-date { color: rgba(0,0,0,0.45); }

/* Selengkapnya link */
.umbt-panel-more {
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.umbt-panel-more:hover { opacity: 0.7; }
.umbt-panel--navy   .umbt-panel-more { color: var(--clr-yellow); }
.umbt-panel--green  .umbt-panel-more { color: var(--clr-yellow); }
.umbt-panel--yellow .umbt-panel-more { color: var(--clr-navy); }

/* Responsive */
@media (max-width: 900px) {
  .umbt-panels-wrap { grid-template-columns: 1fr; }
  .umbt-panel { padding: 20px; }
}


.ummt-section *, .ummt-section *::before, .ummt-section *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.ummt-section a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════
   WRAPPER
   ══════════════════════════════════════════ */
.ummt-section {
  font-family: var(--font-main);
  background: var(--ummt-bg);
  padding: 32px 0 38px;
  overflow: hidden;
}

/* ── JUDUL ── */
.ummt-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════
   CAROUSEL TRACK
   ══════════════════════════════════════════ */
.ummt-carousel-outer {
  position: relative;
  overflow: hidden;
  /* Fade mask kiri-kanan */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.ummt-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: ummt-scroll 28s linear infinite;
}

/* Pause saat hover */
.ummt-track:hover { animation-play-state: paused; }

@keyframes ummt-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Item logo ── */
.ummt-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /*height: 72px;*/
  /*min-width: 80px;*/
}

.ummt-item img {
  max-height: 120px;
  /*max-width: 160px;*/
  width: auto;
  object-fit: contain;
  /* Grayscale + warna sesuai bg — seperti UM */
  filter: grayscale(1) brightness(0.7) invert(0);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}
.ummt-item img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Logo teks (placeholder jika tidak ada gambar) */
.ummt-item-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.ummt-item:hover .ummt-item-text { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 600px) {
  .ummt-track { gap: 36px; animation-duration: 18s; }
  .ummt-item img { max-height: 44px; max-width: 110px; }
  .ummt-title { font-size: 14px; }
}


.umcta-section *, .umcta-section *::before, .umcta-section *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.umcta-section a { text-decoration: none; }

/* ══════════════════════════════════════════
   BANNER — foto BG + overlay gelap tipis
   Tinggi tipis persis seperti UM (~130px)
   ══════════════════════════════════════════ */
.umcta-section {
  font-family: var(--font-main);
  position: relative;
  height: 130px;
  overflow: hidden;
}

/* Background foto sekolah */
.umcta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://smpn1simpangempat.sch.id/upload/upload-website/imagecache/1759925463p20200606095501-900x675.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.55);
  z-index: 0;
}

/* Overlay gelap tipis di kiri agar teks terbaca */
.umcta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 50, 0.72) 0%,
    rgba(10, 20, 50, 0.45) 50%,
    rgba(10, 20, 50, 0.25) 100%
  );
  z-index: 1;
}

/* Inner */
.umcta-inner {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Teks kiri */
.umcta-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.4;
  flex: 1;
}

/* Tombol pill navy — persis seperti "UM Virtual Tour" di UM */
.umcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: var(--clr-navy);
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.umcta-btn:hover {
  background: var(--clr-navy-mid, #2A4A80);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.umcta-btn i { font-size: 13px; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  .umcta-section   { height: auto; min-height: 110px; }
  .umcta-inner     { flex-direction: column; align-items: flex-start; padding: 22px 20px; gap: 14px; }
  .umcta-text      { font-size: 15px; }
  .umcta-btn       { width: 100%; justify-content: center; }
}


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

/* ══════════════════════════════════════════
   WRAPPER
   ══════════════════════════════════════════ */
.uman-section {
  font-family: var(--font-main);
  background: var(--clr-white);
  padding: 52px 0 56px;
}

.uman-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── JUDUL ── */
.uman-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════
   BARIS 1 — COUNTER ANGKA BESAR
   6 kolom, separator vertikal antar kolom
   ══════════════════════════════════════════ */
.uman-counters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.uman-counter-item {
  text-align: left;
  padding: 0 20px 0 0;
  position: relative;
}
/* Separator kanan, kecuali item terakhir */
.uman-counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e0e0e0;
}

.uman-counter-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
/* Highlight kotak abu di belakang 2 digit terakhir — persis UM */
.uman-counter-num .uman-highlight {
  background: #d0d0d0;
  color: var(--clr-dark);
  padding: 1px 3px;
  border-radius: 2px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.uman-counter-label {
  font-size: 12px;
  color: var(--clr-gray);
  margin-top: 8px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   BARIS 2 — RANKING (logo + teks ranking)
   3 grup, separator vertikal
   ══════════════════════════════════════════ */
.uman-rankings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.uman-rank-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px 0 0;
  position: relative;
}
.uman-rank-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e0e0e0;
}
.uman-rank-item:not(:first-child) { padding-left: 24px; }

/* Logo ranking */
.uman-rank-logo {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.uman-rank-logo img {
  max-width: 80px;
  max-height: 52px;
  object-fit: contain;
  width: auto;
}

/* Teks ranking */
.uman-rank-text { display: flex; flex-direction: column; gap: 2px; }
.uman-rank-line {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.25;
}
.uman-rank-year {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

/* Logo SVG placeholder untuk ranking */
.uman-rank-logo-svg {
  width: 72px;
  height: 48px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   BARIS 3 — AKREDITASI (logo + angka + label)
   4 grup
   ══════════════════════════════════════════ */
.uman-akreditasi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.uman-akr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px 0 0;
  position: relative;
}
.uman-akr-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e0e0e0;
}
.uman-akr-item:not(:first-child) { padding-left: 20px; }

.uman-akr-logo {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uman-akr-logo img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.uman-akr-info { display: flex; flex-direction: column; gap: 2px; }
.uman-akr-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1;
}
/* "Unggul" teks besar */
.uman-akr-num.uman-akr-text-big {
  font-size: 1.9rem;
}
.uman-akr-label {
  font-size: 11.5px;
  color: var(--clr-gray);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   COUNTER ANIMATION
   ══════════════════════════════════════════ */
.uman-counter-num[data-counted="false"] { opacity: 0; }
.uman-counter-num[data-counted="true"]  { opacity: 1; transition: opacity 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .uman-counters   { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .uman-rankings   { grid-template-columns: 1fr; gap: 24px; }
  .uman-rank-item  { padding: 0 !important; }
  .uman-rank-item::after { display: none; }
  .uman-akreditasi { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}
@media (max-width: 560px) {
  .uman-counters   { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .uman-counter-item::after { display: none; }
  .uman-counter-num { font-size: 2rem; }
  .uman-rank-line  { font-size: 1.15rem; }
  .uman-akr-num    { font-size: 1.8rem; }
  .uman-akr-num.uman-akr-text-big { font-size: 1.5rem; }
  .uman-akreditasi { grid-template-columns: 1fr 1fr; }
  .uman-akr-item::after { display: none; }
  .uman-akr-item   { padding: 0 !important; }
}


/* ── RESET SCOPED ── */
.umft-footer *, .umft-footer *::before, .umft-footer *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.umft-footer a { text-decoration: none; color: inherit; }
.umft-footer ul { list-style: none; }

.umft-footer {
  font-family: var(--font-main);
  width: 100%;
  background: var(--clr-navy);
}

.umft-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   1. LOGO BAR
   ══════════════════════════════════════════ */
.umft-logo-bar {
  background: var(--clr-navy);
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.umft-logo-bar .umft-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Logo utama: gambar + teks branding */
.umft-brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.umft-main-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.umft-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.umft-brand-text .umft-brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
}
.umft-brand-text .umft-brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* Divider vertikal antara logo */
.umft-logo-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* Logo mitra */
.umft-partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}
.umft-partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.1);
  transition: opacity var(--ease);
}
.umft-partner-logo:hover { opacity: 1; }

/* ══════════════════════════════════════════
   2. INFO BAR (4 kolom kontak)
   ══════════════════════════════════════════ */
.umft-info-bar {
  background: var(--clr-navy);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.umft-info-bar .umft-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.umft-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.umft-info-icon {
  color: var(--clr-yellow);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.umft-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.umft-info-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.4;
}
.umft-info-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   3. KAMPUS CARDS (3 kolom warna)
   ══════════════════════════════════════════ */
.umft-kampus-section {
  padding: 0;
}
.umft-kampus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Tidak ada gap — kotak flush seperti UM */
}

.umft-kampus-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Warna tiap kampus */
.umft-kampus-card:nth-child(1) { background: var(--clr-navy-mid); }
.umft-kampus-card:nth-child(2) { background: var(--clr-teal); }
.umft-kampus-card:nth-child(3) { background: #E8A800; } /* amber/kuning seperti UM */

.umft-kampus-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.35);
}
/* Kampus 3 title: teks hitam/gelap di background kuning */
.umft-kampus-card:nth-child(3) .umft-kampus-title {
  color: var(--clr-navy-dark);
  border-bottom-color: rgba(0,0,0,0.2);
}

.umft-kampus-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.umft-kampus-addr {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.5;
}
.umft-kampus-card:nth-child(3) .umft-kampus-addr {
  color: var(--clr-navy-dark);
}

/* ══════════════════════════════════════════
   4. LINK GRID (4 kolom)
   ══════════════════════════════════════════ */
.umft-links-section {
  background: #0e2040; /* navy paling gelap */
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}

/* Watermark maskot — transparan di kiri bawah */
.umft-mascot-watermark {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 260px;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  font-size: 200px;
  color: white;
  line-height: 1;
}

.umft-links-section .umft-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 32px;
}

.umft-link-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.umft-link-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  transition: color var(--ease), padding-left var(--ease);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.umft-link-col a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 6px;
  transition: background var(--ease);
}
.umft-link-col a:hover {
  color: var(--clr-white);
  padding-left: 4px;
}
.umft-link-col a:hover::before {
  background: var(--clr-yellow);
}

/* ══════════════════════════════════════════
   5. BOTTOM BAR
   ══════════════════════════════════════════ */
.umft-bottom-bar {
  background: #091830; /* navy paling pekat */
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.umft-bottom-bar .umft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.umft-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.umft-bottom-links {
  display: flex;
  gap: 28px;
}
.umft-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.umft-bottom-links a:hover { color: var(--clr-yellow); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .umft-info-bar .umft-inner { grid-template-columns: repeat(2, 1fr); }
  .umft-links-section .umft-inner { grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
}

@media (max-width: 768px) {
  .umft-logo-bar .umft-inner { flex-direction: column; gap: 20px; text-align: center; }
  .umft-logo-divider { width: 60px; height: 1px; }
  .umft-info-bar .umft-inner { grid-template-columns: 1fr; gap: 16px; }
  .umft-kampus-grid { grid-template-columns: 1fr; }
  .umft-kampus-img { height: 200px; }
  .umft-links-section .umft-inner { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .umft-bottom-bar .umft-inner { flex-direction: column; text-align: center; }
  .umft-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .umft-links-section .umft-inner { grid-template-columns: 1fr; }
  .umft-partner-logos { flex-wrap: wrap; justify-content: center; }
  .umft-brand-group { flex-direction: column; text-align: center; }
}
