/* ===== BEGIN: style.css ===== */
/* ============================ */
/* === RESET DAN DASAR === */
/* ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  scroll-padding-top: 80px;
}

/* ============================ */
/* === NAVBAR (Soft Blue)  === */
/* ============================ */
:root{
  --nav-ink: #0b2447;
  --nav-primary: #0d47a1;
  --nav-accent: #4f8ef7;
  --nav-underline: #8ec5ff;
  --nav-bg: rgba(255,255,255,.78);
  --nav-border: rgba(13,71,161,.10);
}

:root{
  --ft-bg-1:#ecfbff;
  --ft-bg-2:#dcf6ff;
  --ft-bg-3:#cfefff;
  --ft-ink:#0d2538;
  --ft-ink-soft:#31556a;
  --ft-accent:#2ec5ff;
  --ft-accent-strong:#0ea5e9;
  --ft-bar:#c6f0ff;
}

.site-nav{
  position: sticky; top:0; z-index:999;
  backdrop-filter: saturate(150%) blur(10px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-nav.nav--scrolled{ box-shadow: 0 10px 30px rgba(13,59,102,.08); background: rgba(255,255,255,.78); }

.nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display:flex; align-items:center; justify-content:space-between;
  transition: padding .25s ease;
}
.site-nav.nav--scrolled .nav-inner{ padding: 10px 24px; }

.brand{ display:flex; align-items:center; gap:.6rem; text-decoration:none; }
.brand img{ height:44px; transition: transform .25s ease; }
.site-nav.nav--scrolled .brand img{ transform: scale(.92); }
.brand-text{ font-weight:700; color:var(--nav-ink); letter-spacing:.3px; }

.menu{ list-style:none; display:flex; align-items:center; gap:18px; margin:0; }
.menu > li{ position:relative; }
.link{
  position:relative; display:inline-flex; align-items:center; gap:.35rem;
  padding:8px 10px; border-radius:10px;
  color:var(--nav-ink); text-decoration:none; font-weight:600; letter-spacing:.2px;
  transition: color .25s ease, background .25s ease, transform .2s ease;
}
.link:hover{ color:var(--nav-primary); background: rgba(79,142,247,.08); }
.link::after{
  content:""; position:absolute; left:10px; right:10px; bottom:4px; height:2px;
  background: linear-gradient(90deg, var(--nav-accent), var(--nav-underline));
  transform: scaleX(0); transform-origin:left; transition: transform .3s ease;
  border-radius:2px;
}
.link:hover::after, .dropdown:hover > .link::after{ transform: scaleX(1); }

.dropdown .chev{ transition: transform .25s ease; }
.dropdown.open .chev, .dropdown:hover .chev{ transform: rotate(180deg); }

.dropdown-menu{
  position:absolute; top:calc(100% + 10px); left:0; min-width:240px;
  background:#fff; border:1px solid var(--nav-border); border-radius:14px;
  box-shadow: 0 20px 40px rgba(13,59,102,.15);
  padding:8px; opacity:0; visibility:hidden;
  transform: translateY(8px) scale(.98); transform-origin: top left;
  transition: transform .18s ease, opacity .18s ease, visibility .18s step-end;
}
.dropdown:hover > .dropdown-menu{ opacity:1; visibility:visible; transform: translateY(0) scale(1); transition: transform .2s ease, opacity .2s ease, visibility 0s; }
.dropdown-menu li{ list-style:none; }
.dropdown-menu a{
  display:block; padding:10px 12px; border-radius:10px; color:var(--nav-ink);
  text-decoration:none; font-weight:600; transition: background .2s ease, color .2s ease;
}
.dropdown-menu a:hover{ background: rgba(79,142,247,.12); color: var(--nav-primary); }

.admin-icon{ width:26px; height:26px; object-fit:contain; }

.hamburger{ display:none; width:44px; height:44px; border:0; background:transparent; position:relative; border-radius:10px; }
.hamburger span{
  position:absolute; left:10px; right:10px; height:2px; background:var(--nav-ink);
  border-radius:2px; transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.hamburger span:nth-child(1){ top:14px; }
.hamburger span:nth-child(2){ top:21px; }
.hamburger span:nth-child(3){ top:28px; }
.hamburger.is-active span:nth-child(1){ top:21px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; }
.hamburger.is-active span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* ===== Mobile ===== */
@media (max-width: 992px){
  .brand-text{ display:none; }
  .hamburger{ display:block; }
  .menu{
    position: fixed; 
    top: 76px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overflow-x: hidden;
    background:#fff; 
    border:1px solid var(--nav-border); 
    border-radius:16px;
    box-shadow: 0 18px 40px rgba(13,59,102,.16);
    padding:14px; 
    flex-direction:column; 
    align-items:stretch; 
    gap:6px;
    transform: translateY(-8px); 
    opacity:0; 
    pointer-events:none; 
    transition: transform .25s ease, opacity .25s ease;
  }
  .menu.open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .menu > li{ width:100%; }
  .menu .link{ padding:12px 14px; border-radius:12px; }
  .dropdown-menu{
    position:static; transform:none; opacity:1; visibility:visible;
    box-shadow:none; border-radius:12px; border:none; padding:4px 6px 8px;
    display:none; background:transparent;
  }
  .dropdown.open .dropdown-menu{ display:block; }
  .dropdown-menu a{ padding:9px 12px; }
}

/* === REVERT: Deskripsi Inkubitek ke versi awal === */
.desc-inkubitek{
  background:#fff;
  border-top:6px solid #0b2b66;
  padding:40px 20px 36px;
  position:relative; overflow:visible;
}
.desc-inkubitek::before{ content:none !important; }

.desc-inkubitek .desc-wrapper{
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.05fr 0.95fr;
  gap:28px; align-items:start;
}

.desc-inkubitek .desc-text{
  background:transparent; border:0; box-shadow:none; padding:0; backdrop-filter:none;
}
.desc-inkubitek .desc-text h2{
  margin:0 0 8px; font-size:45px; line-height:1.2;
  color:#1a1a1a; font-weight:800; letter-spacing:0;
}
.desc-inkubitek .desc-text h2::after{ content:none; }
.desc-inkubitek .desc-text p{
  margin:0 0 6px; color:#163a59; line-height:1.55; font-size:18.5px;
  text-align:justify; hyphens:auto;
}

.desc-inkubitek .desc-images{
  display:grid; grid-template-columns:1.25fr 0.9fr; gap:22px;
  position:static; min-height:auto;
}
.desc-inkubitek .desc-images figure{
  transform-origin: center;
  backface-visibility: hidden;
  contain: paint;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  will-change: transform, box-shadow, filter;
}

.desc-inkubitek .desc-images figure::before{
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    transparent 0 35%,
    var(--ft-accent-strong, #4f8ef7) 45%,
    var(--ft-accent, #6aa9ff) 55%,
    transparent 65% 100%
  );
  opacity: 0; transform: scale(1.15);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.desc-inkubitek .desc-images figure::after{
  content: "";
  position: absolute; inset: -40% -60%;
  border-radius: inherit;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.35) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: rotate(12deg) translateX(-60%);
  opacity: 0;
  pointer-events: none;
}

@keyframes ccSheen {
  to { transform: rotate(12deg) translateX(60%); }
}

@media (hover:hover){
  .desc-inkubitek .desc-images figure:hover{
    transform: translateY(-6px) scale(1.01) rotate3d(1,-1,0,6deg);
    box-shadow: 0 20px 42px rgba(2,16,49,.16);
    filter: saturate(1.04);
  }
  .desc-inkubitek .desc-images figure:hover::before{
    opacity: 1; transform: scale(1);
  }
  .desc-inkubitek .desc-images figure:hover::after{
    opacity: .9; animation: ccSheen 900ms ease forwards;
  }
  .desc-inkubitek .desc-images img{
    transition: transform .5s cubic-bezier(.2,.6,.2,1), filter .5s;
    will-change: transform, filter;
  }
  .desc-inkubitek .desc-images figure:hover img{
    transform: scale(1.045);
    filter: contrast(1.03) saturate(1.06);
  }
}

.desc-inkubitek .img-main{ aspect-ratio: 16 / 10; }
.desc-inkubitek .img-side{ aspect-ratio: 3 / 4; }

.desc-inkubitek .desc-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: reduce){
  .desc-inkubitek .desc-images figure,
  .desc-inkubitek .desc-images img{ transition: none !important; }
  .desc-inkubitek .desc-images figure::after{ animation: none !important; }
}

/* ============================ */
/* === EVENT CARD === */
/* ============================ */
.event-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.event-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.event-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #00b6b3;
  margin: 10px auto 0;
  border-radius: 2px;
}

.event-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.event-card {
  background-color: #fff;
  width: 270px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.event-info {
  padding: 16px 20px;
}

.event-date {
  color: #00b6b3;
  font-size: 14px;
  margin-bottom: 8px;
}

.event-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.event-title a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.event-title a:hover {
  color: #0a91a0;
}

.more-event-button {
  margin-top: 40px;
}

.btn-yellow {
  background-color: #f6a700;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #d49500;
  color: #000;
}

@media (max-width: 768px) {
  .event-grid {
    flex-direction: column;
    align-items: center;
  }
  .event-card {
    width: 90%;
  }
}

/* ============================ */
/* === STRUKTUR ORGANISASI === */
/* ============================ */
#struktur-organisasi,
#mentor-kewirausahaan {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

#struktur-organisasi h2,
#mentor-kewirausahaan h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card,
.card-circle {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card-circle img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card h3,
.card-circle h3 {
  font-size: 1rem;
  color: #0d3b66;
  margin-bottom: 5px;
}

.card p {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================ */
/* === CAREER OPPORTUNITIES === */
/* ============================ */
.career-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.career-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.career-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #0dbac6;
  margin: 10px auto 0;
  border-radius: 2px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto 0;
}

.career-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 23px rgba(0, 0, 0, 0.15);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.career-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.09);
}

.career-box:active {
  transform: translateY(-1px) scale(0.997);
}

.career-box:focus-visible {
  outline: 3px solid #0dbac6;
  outline-offset: 3px;
}

.career-box a {
  color: inherit;
  text-decoration: none;
}

.career-img-link{
  display: inline-block;
  margin-right: 20px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.career-img-link img,
.career-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  transition: transform .25s ease, filter .25s ease;
}

.career-box:hover .career-img-link img,
.career-box:hover > img {
  transform: scale(1.05);
  filter: brightness(0.97);
}

.career-content {
  text-align: left;
}

.career-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.35;
}

.career-content h3 a:hover {
  text-decoration: underline;
}

.career-content .career-date {
  font-size: 0.9rem;
  color: #0dbac6;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.more-career-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #f6a700;
  color: #000000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background .3s ease, transform .2s ease;
}

.more-career-btn:hover {
  background-color: #e69700;
  transform: translateY(-2px);
}

.more-career-btn:active {
  transform: translateY(-1px);
}

/* ============================ */
/* === NEWS SECTION CUSTOM === */
/* ============================ */

.news-section {
  padding: 60px 30px;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #0dbac6;
  margin: 10px auto 0;
  border-radius: 2px;
}

.news-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.news-card {
  background-color: #fff;
  width: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}
.news-card:active {
  transform: translateY(-2px) scale(.998);
}
.news-card:focus-visible {
  outline: 3px solid #0dbac6;
  outline-offset: 3px;
}

.news-card a {
  color: inherit;
  text-decoration: none;
}

.news-img-link{
  display: block;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.news-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  height: auto;
  position: relative;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.news-card:hover .news-image-wrapper img,
.news-img-link:hover .news-image-wrapper img {
  transform: scale(1.05);
  filter: brightness(.97);
}

.news-image-wrapper.no-image{
  background: #f2f5f7;
}

.news-content {
  padding: 18px 20px;
}

.news-date {
  font-size: 14px;
  color: #00a891;
  margin-bottom: 8px;
  display: block;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-title a {
  color: #193cb8;
  text-decoration: none;
  transition: color .25s ease, text-decoration-color .25s ease;
}

.news-title a:hover {
  color: #0a2f91;
  text-decoration: underline;
}

.news-button-wrapper {
  margin-top: 40px;
}

.more-news-btn {
  padding: 12px 26px;
  background-color: #f6a700;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color .3s ease, transform .2s ease;
}

.more-news-btn:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}
.more-news-btn:active {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce){
  .news-card,
  .news-image-wrapper img,
  .more-news-btn {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .news-grid {
    flex-direction: column;
    align-items: center;
  }
  .news-card {
    width: 90%;
  }
}

/* Section Title */
.youtube-section {
  padding: 60px 40px;
  background-color: #ffffff;
  text-align: center;
}

.youtube-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.youtube-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #193cb8;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.youtube-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.youtube-card {
  width: 300px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s;
  text-align: left;
  border: #e6dcdc solid;
}

.youtube-card:hover {
  transform: translateY(-5px);
}

.youtube-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.youtube-content {
  padding: 16px;
}

.youtube-date {
  font-size: 14px;
  color: #00a891;
  margin-bottom: 8px;
  display: block;
}

.youtube-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.youtube-button-wrapper {
  margin-top: 40px;
}

.youtube-btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.youtube-btn:hover {
  background-color: #e6b800;
}

/* FOOTER STYLING */

.scroll-up-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0ea5e9;
  color: #000;
  font-size: 22px;
  padding: 12px 22px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-up-btn:hover {
  background-color: #2ec5ff;
  transform: translateY(-4px);
}

:root {
  color-scheme: light dark;
}

.cc-card { border: 1px solid rgba(0,0,0,.06); border-radius: .75rem; }
.cc-card .card-title { font-weight: 600; }

.cc-kv {
  display: grid; gap: .75rem 1.25rem;
  grid-template-columns: repeat(12, 1fr);
}
.cc-kv .kv-item { grid-column: span 6; }
.cc-kv .kv-label { font-size: .8rem; color: #6c757d; }
.cc-kv .kv-value { font-weight: 600; word-break: break-word; }
@media (max-width: 768px) {
  .cc-kv .kv-item { grid-column: span 12; }
}

.cc-table th { white-space: nowrap; }
.cc-table td, .cc-table th { vertical-align: middle; }

.cc-ol li { margin-bottom: .35rem; }

.cc-copy { font-weight: 600; color: inherit; text-decoration: underline dotted; }
.cc-copy:hover, .cc-copy:focus { text-decoration: underline; }

.cc-sticky-contact {
  position: sticky; bottom: 0; z-index: 1020;
  padding: .75rem; background: linear-gradient(to top, rgba(255,255,255,.95), rgba(255,255,255,.7));
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(0,0,0,.08);
}
@media (prefers-color-scheme: dark) {
  .cc-sticky-contact { background: linear-gradient(to top, rgba(20,20,20,.85), rgba(20,20,20,.6)); }
}


footer {
  background: linear-gradient(165deg, var(--ft-bg-1) 0%, var(--ft-bg-2) 55%, var(--ft-bg-3) 100%);
  padding: 60px 30px 40px;
  color: var(--ft-ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border-top: 1px solid #dbe6ff;
  box-shadow: 0 -2px 12px rgba(15,23,42,.06);
}

footer::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(900px 320px at 10% -10%, rgba(79,142,247,.10), transparent 60%),
    radial-gradient(700px 260px at 110% 0, rgba(106,169,255,.08), transparent 60%);
}

footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  border-bottom: 1px solid #e6efff;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

footer h3,
footer h4 {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 14px;
  letter-spacing: .2px;
  color: #0f2d6a;
  position: relative;
  padding-bottom: .35rem;
}
footer h3::after,
footer h4::after{
  content:""; display:block; width:48px; height:3px;
  background: linear-gradient(90deg, var(--ft-accent-strong), var(--ft-accent));
  border-radius: 2px; margin-top:.4rem;
}

footer ul { list-style: none; padding-left: 0; margin-top: 10px; }
footer ul li,
footer p,
footer small { color: var(--ft-ink-soft); font-size: 15px; }

footer a {
  color: #0f2d6a;
  text-decoration: none;
  transition: color .25s ease, text-decoration-color .25s ease;
}
footer a:hover { color: var(--ft-accent-strong); text-decoration: underline; }

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand img { width: 90px; margin-bottom: 14px; filter: none; }
.footer-brand h3 { margin: 6px 0 2px; font-size: 1.1rem; color: #0f2d6a; text-transform: uppercase; }
.footer-brand small { font-size: 13px; color: var(--ft-accent-strong); }

.footer-bottom {
  background: var(--ft-bar);
  padding: 16px 20px;
  margin-top: 30px;
  text-align: center;
  color: var(--ft-ink);
  font-size: 14px;
  letter-spacing: .2px;
  z-index: 2;
  position: relative;
  border-top: 1px solid #dbe6ff;
}

@media screen and (max-width: 768px) {
  footer .footer-container { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom { font-size: 13px; }
}

* { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }
table { width: 100%; overflow-x: auto; display: block; }

html { font-size: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }

h1 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h2 { font-size: clamp(1.5rem, 2vw + 0.75rem, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem); }

.container, .wrapper, .content, main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.row { display: flex; flex-wrap: wrap; margin-left: -0.5rem; margin-right: -0.5rem; }
.col { padding-left: 0.5rem; padding-right: 0.5rem; flex: 1 1 0; }

.hide-sm { display: none !important; }
.stack-sm > * + * { margin-top: .75rem; }

@media (min-width: 641px) {
  .hide-sm { display: initial !important; }
}

@media (max-width: 1024px) {
  .grid-3, .grid-4, .grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 640px) {
  .row { flex-direction: column; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  nav ul { display: flex; flex-wrap: wrap; gap: .5rem; }
  button, .btn, input, select, textarea { max-width: 100%; }
}

/* ===== MOBILE-FRIENDLY ENHANCEMENTS ===== */

@media (max-width: 992px){
  .site-nav .nav-inner{ padding: 12px 16px; }
  .hamburger{ width: 48px; height: 48px; }
  body.body--lock{ overflow: hidden; }
}

@media (max-width: 768px){
  .slider-container{
    height: min(72vh, 560px);
    min-height: 380px;
  }
  /* Hapus .slider-item img karena tidak ada di HTML */
}

@media (max-width: 640px){
  .event-section,
  .career-section,
  .news-section,
  .youtube-section{ padding: 36px 16px; }
  .section-title{ font-size: 26px; margin-bottom: 24px; }
}

@media (max-width: 768px){
  .event-grid,
  .news-grid,
  .youtube-grid{ gap: 16px; }

  .event-card,
  .news-card,
  .youtube-card{
    width: 100%;
    max-width: 640px;
  }

  .event-card img{ height: 200px; }
  .news-image-wrapper{ aspect-ratio: 16 / 9; }
  .youtube-card img{ height: 180px; }
}

@media (max-width: 640px){
  .career-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }
  .career-box{
    padding: 14px;
    border-radius: 14px;
  }
  .career-img-link img{ width: 56px; height: 56px; }
}

@media (max-width: 640px){
  .more-event-button a,
  .more-career-btn,
  .more-news-btn,
  .youtube-btn{
    padding: 12px 18px;
    min-height: 44px;
    border-radius: 12px;
  }
}

@media (hover: none){
  .card:hover,
  .event-card:hover,
  .career-box:hover,
  .news-card:hover,
  .youtube-card:hover{
    transform:none; box-shadow: 0 4px 12px rgba(0,0,0,.12);
  }
}

@media (max-width: 640px){
  .scroll-up-btn{ right: 16px; bottom: 20px; }
}


@media (max-width: 768px){
  .desc-inkubitek{ padding: 28px 16px; }
  .desc-inkubitek .desc-wrapper{ display:block; }
  .desc-inkubitek .desc-text{
    margin-bottom: 16px;
  }
  .desc-inkubitek .desc-text h2{
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 10px;
  }
  .desc-inkubitek .desc-text p{
    margin: 8px 0; line-height: 1.6; font-size: 15px;
  }

  .desc-inkubitek .desc-images{
    display: grid; grid-template-columns: 1fr; gap: 12px;
  }
  .desc-inkubitek .desc-images figure{
    position: relative; overflow: hidden;
    border-radius: 16px; background:#f6f8ff;
    box-shadow: 0 10px 22px rgba(2,16,49,.08);
    margin: 0;
  }
  .desc-inkubitek .img-main{ aspect-ratio: 16/10; }
  .desc-inkubitek .img-side{ aspect-ratio: 16/11; }
  .desc-inkubitek .desc-images img{
    width:100%; height:100%; object-fit:cover; display:block;
  }
}

@media (max-width: 480px){
  .section-title{ font-size: 24px; margin: 18px 0 10px; }
}

/* ============================ */
/* === ENHANCED ANIMATIONS CSS === */
/* ============================ */

/* Progress bar untuk scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #4f8ef7, #6aa9ff);
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 2px 8px rgba(79, 142, 247, 0.3);
}



/* Enhanced reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ============================ */
/* === SLIDER - FIXED VERSION === */
/* ============================ */

.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

/* PERBAIKAN: Default opacity harus 1, bukan 0 */
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* UBAH DARI 0 MENJADI 1 */
  transition: opacity 1.2s ease;
  will-change: opacity;
  z-index: 1;
}

/* Gambar aktif (yang sedang ditampilkan) */
.slider-image.active {
  opacity: 1;
  z-index: 3;
}

/* Gambar yang akan keluar */
.slider-image.leaving {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/* Untuk kasus special: kelas .top dan .bottom jika ada */
.slider-image.top,
.slider-image.bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-image.top.active,
.slider-image.bottom.active {
  opacity: 1;
  z-index: 3;
}

.slider-image.top.leaving,
.slider-image.bottom.leaving {
  opacity: 0;
  z-index: 2;
}

/* Overlay untuk efek gelap */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 30%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

/* Konten teks */
.slider-content {
  position: absolute;
  z-index: 10;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1200px;
  padding: 0 20px;
}

.slider-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slider-description {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  opacity: 0.9;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}

/* Tombol navigasi */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Dots navigation */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
  padding: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255,255,255,0.5);
  transform: scale(1.2);
}

.dot.active {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* Tambahan untuk efek ripple pada dots */
.dot-ripple {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
}

.dot-ripple.animate {
  animation: dotRipple 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dotRipple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slider-container {
    height: 70vh;
    min-height: 400px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  .slider-dots {
    bottom: 20px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
  }
  
  .slider-content {
    bottom: 20%;
  }
  
  .slider-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .slider-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 60vh;
    min-height: 350px;
  }
  
  .slider-title {
    font-size: 1.5rem;
  }
  
  .slider-description {
    font-size: 1rem;
  }
}

/* Fix untuk jika tidak ada gambar slider */
.slider-container:empty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1;
}