/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #f8f9fa;
  padding-top: 115px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==================== TOP BAR ==================== */
.top-bar {
  background: #1976D2;
  color: #fff;
  font-size: 0.78rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-left span i { margin-right: 5px; color: #ffc107; }
.top-bar-right { display: flex; gap: 10px; }
.top-bar-right a {
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.73rem;
  transition: 0.3s;
}
.top-bar-right a:hover { background: #ffc107; color: #1976D2; }

/* ==================== CONTAINER ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== HEADER / NAVBAR ==================== */
header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.navbar-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.navbar-scrolled .logo-icon {
  width: 42px;
  height: 42px;
  font-size: 1rem;
  border-radius: 10px;
}
header.navbar-scrolled .logo-text h1 { font-size: 0.95rem; }
header.navbar-scrolled .logo-text p { font-size: 0.5rem; }
header.navbar-scrolled .navbar { padding: 6px 0; }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  flex-shrink: 0;
}
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #ffc107;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(13,27,62,0.25);
}
.logo-text h1 { font-size: 1.05rem; font-weight: 700; color: #1976D2; line-height: 1.2; }
.logo-text p { font-size: 0.6rem; color: #1976d2; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.logo-img { height: 48px; width: auto; object-fit: contain; border-radius: 10px; }

.nav-links { 
  display: flex; 
  gap: 4px; 
  align-items: center; 
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc(100% - 200px);
}
.nav-links a {
  padding: 8px 12px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  transition: 0.3s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: #1976D2;
  color: #fff;
}
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 10px;
  min-width: 210px;
  padding: 8px 0;
  z-index: 100;
}
.nav-links .dropdown:hover .dropdown-content { display: block; }
.nav-links .dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: 0;
}
.nav-links .dropdown-content a:hover { background: #e8eaf6; color: #1976D2; }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
  border-radius: 8px;
  transition: 0.3s;
}
.hamburger span {
  width: 28px; height: 3px;
  background: #1976D2;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.55) 0%, rgba(13,27,62,0.40) 50%, rgba(26,58,107,0.25) 100%);
}

.hero-slide-pattern {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, #fff 35px, #fff 36px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, #fff 35px, #fff 36px);
}
.hero-slide-glow {
  position: absolute;
  width: 150%; height: 150%;
  top: -25%; left: -25%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,193,7,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  animation: heroFloat 18s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hero-slide-text { max-width: 560px; }
.hero-slide-text .hero-badge {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.3);
  color: #ffc107;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-slide-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-slide-text h2 span { color: #ffc107; }
.hero-slide-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-slide-visual {
  position: relative;
  width: 380px;
  height: 380px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,193,7,0.06);
  border: 1px solid rgba(255,193,7,0.1);
}
.hero-circle-1 { width: 380px; height: 380px; top: 0; left: 0; animation: pulse1 4s ease-in-out infinite; }
.hero-circle-2 { width: 280px; height: 280px; top: 50px; left: 50px; animation: pulse2 4s ease-in-out infinite 0.5s; }
.hero-circle-3 { width: 180px; height: 180px; top: 100px; left: 100px; animation: pulse1 4s ease-in-out infinite 1s; }
.hero-icon-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: linear-gradient(135deg, #ffc107, #ffca28);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  color: #1976D2;
  box-shadow: 0 12px 40px rgba(255,193,7,0.3);
}
@keyframes pulse1 { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes pulse2 { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.08); opacity: 0.7; } }

/* Slider Nav Arrows */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}
.hero-slider-nav:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #1976D2;
  transform: translateY(-50%) scale(1.1);
}
.hero-slider-prev { left: 30px; }
.hero-slider-next { right: 30px; }

/* Slide text animation */
.hero-slide.active .hero-slide-text {
  animation: slideInLeft 0.9s ease-out forwards;
}
.hero-slide.active .hero-slide-visual {
  animation: slideInRight 0.9s ease-out forwards;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  background: linear-gradient(135deg, #ffc107, #ffca28);
  color: #1976D2;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255,193,7,0.35);
  min-width: 180px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,193,7,0.5); }
.btn-secondary {
  background: transparent;
  color: #1976D2;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid #1976D2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  cursor: pointer;
  min-width: 180px;
}
.btn-secondary:hover { background: rgba(25,118,210,0.08); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.88rem;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: #fff;
  padding: 28px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-top: -40px;
  position: relative;
  z-index: 3;
  border-radius: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-group {
  text-align: center;
  padding: 20px 15px;
  border-right: 1px solid #eee;
}
.stat-group:last-child { border-right: none; }
.stat-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1976D2;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.stat-group-label i { color: #ffc107; }
.stat-group .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #1976D2;
  line-height: 1;
}
.stat-group .stat-number span { color: #ffc107; }
.stat-group .stat-sub {
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 4px;
}

/* ==================== SECTION STYLES ==================== */
.section { padding: 70px 0; }
.section-header {
  text-align: center;
  margin-bottom: 45px;
}
.section-tag {
  display: inline-block;
  background: #e8edf5;
  color: #1976D2;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 10px;
}
.section-header h2 span {
  color: #ffc107;
}
.section-header p {
  color: #888;
  font-size: 0.92rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ==================== JURUSAN / PROGRAMS ==================== */
.programs { background: #f0f3f8; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #1976D2, #1a3a6b);
  transform: scaleX(0);
  transition: 0.4s;
}
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(13,27,62,0.1);
}
.program-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  color: #1976D2;
  transition: 0.4s;
}
.program-card:hover .program-icon {
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  color: #fff;
  transform: scale(1.05);
}
.program-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 8px;
}
.program-card .program-fullname {
  font-size: 0.75rem;
  color: #999;
  font-weight: 400;
  margin-bottom: 12px;
}
.program-card p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}
.program-link {
  color: #1976D2;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}
.program-link:hover { gap: 10px; color: #ffc107; }

/* ==================== PENDAFTARAN ==================== */
.pendaftaran { background: #fff; }
.pendaftaran-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pendaftaran-card {
  background: #f4f6fa;
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
  cursor: pointer;
}
.pendaftaran-card:hover {
  background: #1976D2;
  color: #fff;
  border-color: #1976D2;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13,27,62,0.2);
}
.pendaftaran-card:hover .pendaftaran-icon { background: rgba(255,255,255,0.12); color: #ffc107; }
.pendaftaran-card:hover h4 { color: #fff; }
.pendaftaran-card:hover p { color: rgba(255,255,255,0.65); }
.pendaftaran-icon {
  width: 60px; height: 60px;
  background: #e8edf5;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #1976D2;
  transition: 0.3s;
}
.pendaftaran-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 6px;
}
.pendaftaran-card p {
  font-size: 0.76rem;
  color: #999;
  line-height: 1.5;
}

/* ==================== BIAYA PER JURUSAN ==================== */
.biaya { background: #f8f9fa; }
.biaya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.biaya-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8eef3;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.biaya-card:hover {
  box-shadow: 0 8px 25px rgba(13,27,62,0.1);
  transform: translateY(-3px);
}
.biaya-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #0d1b3e, #1a3a6b);
  color: #fff;
}
.biaya-card-header i {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffc107;
  flex-shrink: 0;
}
.biaya-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.biaya-card-header span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  display: block;
  line-height: 1.3;
}
.biaya-card-body { padding: 18px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.biaya-rows { flex: 1; }
.biaya-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
}
.biaya-row:last-child { border-bottom: none; }
.biaya-label {
  font-size: 0.78rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}
.biaya-label i {
  width: 16px;
  color: #1976D2;
  font-size: 0.75rem;
}
.biaya-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d1b3e;
  text-align: right;
  white-space: nowrap;
}
.biaya-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1976D2;
  border-top: 2px solid #1976D2;
}
.biaya-spp {
  margin-top: 12px;
  padding: 10px 14px;
  background: #e8f4fd;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #0d1b3e;
  display: flex;
  align-items: center;
  gap: 6px;
}
.biaya-spp i { color: #1976D2; }
.biaya-spp-note { font-size: 0.7rem; color: #999; }
.biaya-note {
  margin-top: 8px;
  padding: 8px 12px;
  background: #fff8e1;
  border-radius: 6px;
  font-size: 0.72rem;
  color: #8d6e00;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.biaya-note i { color: #f9a825; margin-top: 1px; }

/* ==================== ALUR PENDAFTARAN ==================== */
.alur-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 10px;
  flex-wrap: wrap;
}
.alur-item {
  text-align: center;
  padding: 30px 24px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  flex: 1;
  max-width: 200px;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.alur-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.alur-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0d1b3e, #1a3a6b);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: #ffc107;
}
.alur-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px; height: 30px;
  background: #ffc107;
  color: #0d1b3e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 3px 10px rgba(255,193,7,0.4);
}
.alur-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.alur-item p {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.alur-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  align-self: center;
  color: #ccc;
  font-size: 1rem;
}

/* ==================== STATS & SHARE ==================== */
.pendaftaran-stats {
  background: #fff;
}
.stats-share-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.stats-share-left .section-tag,
.stats-share-right .section-tag {
  margin-bottom: 8px;
}
.stats-share-left h3,
.stats-share-right h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d1b3e;
  margin-bottom: 6px;
}
.stats-share-left h3 span,
.stats-share-right h3 span {
  color: #ffc107;
}
.stats-share-left h3 span,
.stats-share-right h3 span {
  color: #ffc107;
}
.stats-share-right p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 16px;
}
.stats-share-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.stat-share-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s;
}
.stat-share-item:hover {
  transform: translateX(4px);
}
.stat-share-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.stat-share-info {
  display: flex;
  flex-direction: column;
}
.stat-share-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0d1b3e;
  line-height: 1.2;
}
.stat-share-label {
  font-size: 0.78rem;
  color: #888;
}
.stats-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.stats-share-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.stats-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ==================== CTA PENDAFTARAN ==================== */
.pendaftaran-cta {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6b 100%);
  padding: 0;
}
.cta-box {
  text-align: center;
  padding: 60px 20px;
}
.cta-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-content h3 span {
  color: #ffc107;
}
.cta-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
}

/* ==================== ABOUT SECTION ==================== */
.about { background: #f0f3f8; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.about-image-placeholder i { font-size: 4rem; color: #1976D2; opacity: 0.3; }
.about-image-placeholder span { color: #1976D2; opacity: 0.3; font-weight: 600; font-size: 0.9rem; }
.about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: #ffc107;
  color: #1976D2;
  padding: 15px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255,193,7,0.3);
}
.about-badge .year { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-badge .label { font-size: 0.68rem; font-weight: 600; }
.about-text .section-tag { margin-bottom: 10px; }
.about-text h2 { font-size: 1.9rem; font-weight: 700; color: #1976D2; margin-bottom: 15px; }
.about-text p { color: #666; font-size: 0.88rem; line-height: 1.8; margin-bottom: 18px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #555;
}
.about-feature i { color: #1976D2; font-size: 0.95rem; }

/* ==================== BURSA KERJA & ALUMNI ==================== */
.bursa-alumni { background: #fff; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.ba-card {
  background: #f4f6fa;
  border-radius: 18px;
  padding: 35px 30px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.ba-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ba-card-icon {
  width: 55px; height: 55px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #ffc107;
}
.ba-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1976D2;
}
.ba-card-header p { font-size: 0.78rem; color: #999; }
.ba-card-list { display: flex; flex-direction: column; gap: 10px; }
.ba-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  font-size: 0.82rem;
  color: #555;
  transition: 0.2s;
}
.ba-card-list li:hover { background: #e8edf5; color: #1976D2; }
.ba-card-list li i { color: #ffc107; font-size: 0.75rem; }

/* ==================== FIND MUDAMU ==================== */
.find-mudamu {
  background: linear-gradient(135deg, #1976D2 0%, #1a3a6b 50%, #2563a8 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.find-mudamu::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,193,7,0.05);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.fm-content { position: relative; z-index: 2; text-align: center; }
.fm-content h2 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.fm-content > p { color: rgba(255,255,255,0.6); margin-bottom: 35px; font-size: 0.92rem; }
.fm-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.fm-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 18px 24px;
  color: #fff;
  transition: 0.3s;
  min-width: 180px;
}
.fm-card i { font-size: 1.5rem; color: #ffc107; }
.fm-card strong { display: block; font-size: 0.88rem; }
.fm-card span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.fm-card:hover {
  background: rgba(255,193,7,0.12);
  border-color: #ffc107;
  transform: translateY(-3px);
}

/* ==================== NEWS ==================== */
.news { background: #f0f3f8; }
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.news-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: 0.3s;
}
.news-featured:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.news-thumb {
  height: 250px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-thumb i { font-size: 3rem; color: #1976D2; opacity: 0.25; }
.news-thumb .news-tag {
  position: absolute;
  top: 15px; left: 15px;
  background: #1976D2;
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
}
.news-body { padding: 22px; }
.news-date { font-size: 0.73rem; color: #aaa; margin-bottom: 8px; }
.news-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body h3 a:hover { color: #ffc107; }
.news-body p { font-size: 0.8rem; color: #888; line-height: 1.6; }

.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: 0.3s;
}
.news-item:hover { transform: translateX(5px); box-shadow: 0 5px 20px rgba(0,0,0,0.06); }
.news-item-thumb {
  width: 100px;
  min-height: 85px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news-item-thumb i { font-size: 1.4rem; color: #1976D2; opacity: 0.25; }
.news-item-body { flex: 1; }
.news-item-body .news-tag-inline {
  display: inline-block;
  background: #e8edf5;
  color: #1976D2;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.63rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.news-item-body h4 {
  font-size: 0.86rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
}
.news-item-body h4 a:hover { color: #1976D2; }
.news-item-body .date { font-size: 0.7rem; color: #aaa; }

/* ==================== DIGITAL ASSETS ==================== */
.assets { background: #fff; }
.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.asset-card {
  background: #f4f6fa;
  border-radius: 16px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: 0.3s;
  border: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.asset-card:hover {
  background: #1976D2;
  color: #fff;
  border-color: #1976D2;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13,27,62,0.2);
}
.asset-card:hover .asset-icon { background: rgba(255,255,255,0.12); color: #ffc107; }
.asset-card:hover h4 { color: #fff; }
.asset-card:hover p { color: rgba(255,255,255,0.65); }
.asset-card:hover .asset-type-badge { color: #fff; }
.asset-icon {
  width: 55px; height: 55px;
  background: #e8edf5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1976D2;
  flex-shrink: 0;
  transition: 0.3s;
}
.asset-card h4 { font-size: 0.9rem; font-weight: 600; color: #333; margin-bottom: 4px; }
.asset-card p { font-size: 0.76rem; color: #999; }
.asset-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.asset-type-link {
  background: rgba(33,150,243,0.1);
  color: #2196f3;
}
.asset-type-download {
  background: rgba(76,175,80,0.1);
  color: #4caf50;
}
.asset-type-page {
  background: rgba(255,152,0,0.1);
  color: #ff9800;
}
.asset-card:hover .asset-type-link { background: rgba(255,193,7,0.2); color: #ffc107; }
.asset-card:hover .asset-type-download { background: rgba(255,193,7,0.2); color: #ffc107; }
.asset-card:hover .asset-type-page { background: rgba(255,193,7,0.2); color: #ffc107; }

/* ==================== PARTNERS ==================== */
.partners {
  background: #f0f3f8;
  padding: 50px 0;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.5;
}
.partners-logos .partner-logo {
  min-width: 90px; height: 50px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #666;
  font-weight: 600;
  padding: 6px 12px;
  transition: all 0.3s;
}
.partners-logos .partner-logo:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.partners-logos .partner-logo img {
  max-width: 80px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.partners-logos .partner-logo:hover img {
  filter: grayscale(0%);
}

/* ==================== FOOTER ==================== */
footer {
  background: #0a0f1e;
  color: #fff;
  padding-top: 55px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text h1 { color: #fff; font-size: 1rem; }
.footer-brand .logo-text p { color: rgba(255,255,255,0.45); }
.footer-brand > p { color: rgba(255,255,255,0.4); font-size: 0.8rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  transition: 0.3s;
}
.footer-social a:hover { background: #ffc107; color: #1976D2; }

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 3px;
  background: #ffc107;
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: #ffc107; padding-left: 5px; }
.footer-col ul li a i { font-size: 0.55rem; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i { color: #ffc107; margin-top: 3px; font-size: 0.82rem; }
.footer-contact-item span { color: rgba(255,255,255,0.45); font-size: 0.8rem; line-height: 1.5; }

.footer-logos {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-logos .accred-logo,
.footer-logos .partner-mini {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* ==================== PROGRAM DETAIL PAGE ==================== */
.program-hero {
  background: linear-gradient(135deg, #0a1628, #1976D2 40%, #1a3a6b 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.program-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(25,118,210,0.75) 50%, rgba(26,58,107,0.88) 100%);
  z-index: 1;
}
.program-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,193,7,0.04);
  border-radius: 50%;
  top: -150px; right: -100px;
  z-index: 1;
}
.program-hero .container { position: relative; z-index: 2; }
.program-hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.program-hero-text { flex: 1; }
.program-hero-text .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
}
.program-hero-text .breadcrumb a { color: rgba(255,255,255,0.5); transition: 0.3s; }
.program-hero-text .breadcrumb a:hover { color: #ffc107; }
.program-hero-text .breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.6rem; }
.program-hero-text .breadcrumb span { color: #ffc107; font-weight: 500; }
.program-hero-badge {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.3);
  color: #ffc107;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.program-hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.program-hero-text h1 span { color: #ffc107; }
.program-hero-text .program-fulltitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 400;
}
.program-hero-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.program-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.program-hero-visual {
  flex-shrink: 0;
  width: 280px; height: 280px;
  position: relative;
}
.program-hero-icon {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, #ffc107, #ffca28);
  border-radius: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: #1976D2;
  box-shadow: 0 15px 50px rgba(255,193,7,0.3);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 10px)); } }

.program-hero-stat {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  color: #fff;
}
.program-hero-stat .number { font-size: 1.4rem; font-weight: 800; color: #ffc107; line-height: 1; }
.program-hero-stat .label { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
.program-hero-stat-1 { bottom: 10px; left: 0; }
.program-hero-stat-2 { top: 10px; right: 0; }
.program-hero-stat-3 { bottom: 10px; right: 0; }

/* Program Detail Section */
.program-section { padding: 60px 0; }
.program-section:nth-child(even) { background: #f0f3f8; }
.program-section:nth-child(odd) { background: #fff; }

.program-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.program-section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 8px;
}
.program-section-header p {
  color: #888;
  font-size: 0.9rem;
  max-width: 550px;
  margin: 0 auto;
}

/* Kompetensi Grid */
.kompetensi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kompetensi-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}
.kompetensi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13,27,62,0.08);
  border-color: #ffc107;
}
.kompetensi-icon {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: #1976D2;
  transition: 0.3s;
}
.kompetensi-card:hover .kompetensi-icon {
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  color: #ffc107;
}
.kompetensi-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 8px;
}
.kompetensi-card p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
}

/* Fasilitas */
.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fasilitas-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.fasilitas-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.fasilitas-icon {
  width: 55px; height: 55px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #ffc107;
  flex-shrink: 0;
}
.fasilitas-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 4px;
}
.fasilitas-card p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

/* Kurikulum */
.kurikulum-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.kurikulum-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e0e4ec;
}
.kurikulum-item {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.kurikulum-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transform: translateX(5px);
}
.kurikulum-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 28px;
  width: 12px; height: 12px;
  background: #ffc107;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #1976D2;
}
.kurikulum-year {
  display: inline-block;
  background: #1976D2;
  color: #ffc107;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.kurikulum-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 8px;
}
.kurikulum-item p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
}

/* Prospek Kerja */
.prospek-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prospek-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}
.prospek-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13,27,62,0.08);
}
.prospek-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: #1976D2;
  transition: 0.3s;
}
.prospek-card:hover .prospek-icon {
  background: linear-gradient(135deg, #ffc107, #ffca28);
  color: #1976D2;
}
.prospek-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 6px;
}
.prospek-card p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}
.prospek-salary {
  display: inline-block;
  background: #e8edf5;
  color: #1976D2;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Testimoni Alumni */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimoni-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.testimoni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.testimoni-quote {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  padding-left: 20px;
}
.testimoni-quote::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc107;
  font-size: 1rem;
}
.testimoni-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimoni-avatar {
  width: 45px; height: 45px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffc107;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimoni-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1976D2;
}
.testimoni-info span {
  font-size: 0.72rem;
  color: #999;
}

/* ===== JURUSAN TABS ===== */
.programs-tab-section {
  background: #f8f9fa;
  padding: 0 0 60px;
}
.jurusan-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.jurusan-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.jurusan-tab i {
  font-size: 1.6rem;
  color: #1976D2;
  transition: color 0.3s;
}
.jurusan-tab strong {
  display: block;
  font-size: 1rem;
  color: #1976D2;
}
.jurusan-tab span {
  display: block;
  font-size: 0.72rem;
  color: #888;
  font-weight: 400;
}
.jurusan-tab:hover {
  border-color: #ffc107;
  box-shadow: 0 4px 16px rgba(255,193,7,0.15);
  transform: translateY(-2px);
}
.jurusan-tab.active {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fff9e6, #fff);
  box-shadow: 0 4px 20px rgba(255,193,7,0.2);
}
.jurusan-tab.active i,
.jurusan-tab.active strong {
  color: #d4a00a;
}

/* Tab Content */
.jurusan-tab-content {
  display: none;
}
.jurusan-tab-content.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Program Sub Sections */
.program-sub-section {
  padding: 50px 0;
}
.program-sub-section.alt-bg {
  background: #fff;
  border-radius: 16px;
  padding: 50px 30px;
  margin: 0 -15px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* ===== ABOUT PAGE ===== */
.about-tab-section {
  background: #f8f9fa;
  padding: 0 0 60px;
}
.about-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.about-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.about-tab i {
  font-size: 1.4rem;
  color: #1976D2;
  transition: color 0.3s;
}
.about-tab strong {
  display: block;
  font-size: 0.95rem;
  color: #1976D2;
}
.about-tab span {
  display: block;
  font-size: 0.7rem;
  color: #888;
  font-weight: 400;
}
.about-tab:hover {
  border-color: #ffc107;
  box-shadow: 0 4px 16px rgba(255,193,7,0.15);
  transform: translateY(-2px);
}
.about-tab.active {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fff9e6, #fff);
  box-shadow: 0 4px 20px rgba(255,193,7,0.2);
}
.about-tab.active i,
.about-tab.active strong {
  color: #d4a00a;
}
.about-tab-content {
  display: none;
}
.about-tab-content.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}
.about-sub-section {
  padding: 50px 0;
}
.about-sub-section.alt-bg {
  background: #fff;
  border-radius: 16px;
  padding: 50px 30px;
  margin: 0 -15px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* About - Split Layout */
.about-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-split-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 15px;
}
.about-split-text p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* About - Timeline */
.about-timeline {
  position: relative;
  padding-left: 30px;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ffc107, #1976D2);
  border-radius: 3px;
}
.about-timeline-item {
  position: relative;
  padding: 0 0 24px 0;
}
.about-timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffc107;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #ffc107;
}
.about-timeline-year {
  font-size: 1rem;
  font-weight: 800;
  color: #1976D2;
  margin-bottom: 4px;
}
.about-timeline-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

/* About - Data Grid */
.about-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-data-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}
.about-data-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-data-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #ffc107;
  font-size: 1.1rem;
}
.about-data-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 6px;
}
.about-data-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
}

/* About - Org Chart */
.about-org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-org-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: 0.3s;
}
.about-org-card.main {
  border-color: #ffc107;
  box-shadow: 0 4px 16px rgba(255,193,7,0.15);
  background: linear-gradient(180deg, #fff9e6, #fff);
}
.about-org-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-org-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #ffc107;
  font-size: 1.6rem;
}
.about-org-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 4px;
}
.about-org-role {
  font-size: 0.75rem;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-org-card p {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.5;
}

/* About - Vision */
.about-vision-box {
  background: linear-gradient(135deg, #1976D2 0%, #1a3a6b 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}
.about-vision-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,193,7,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffc107;
  font-size: 1.6rem;
}
.about-vision-box .section-tag {
  color: #ffc107;
}
.about-vision-box h2 {
  color: #fff;
}
.about-vision-quote {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 28px;
  border: none;
  padding: 0;
  position: relative;
}
.about-vision-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(255,193,7,0.3);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}
.about-vision-keywords {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-vision-keywords span {
  background: rgba(255,193,7,0.15);
  color: #ffc107;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}
.about-vision-keywords i {
  margin-right: 5px;
}

/* About - Mission */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-mission-card {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 28px 22px;
  transition: 0.3s;
  border: 1px solid #eee;
}
.about-mission-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-mission-num {
  font-size: 2rem;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 10px;
  opacity: 0.7;
}
.about-mission-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 8px;
}
.about-mission-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
}

/* About - Goals */
.about-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-goal-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}
.about-goal-item:hover {
  border-color: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.about-goal-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1.1rem;
}
.about-goal-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 4px;
}
.about-goal-item p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
}

/* About - Kepsek */
.about-kepsek-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.about-kepsek-photo {
  text-align: center;
}
.about-kepsek-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #ffc107;
  font-size: 3.5rem;
  border: 5px solid #ffc107;
  box-shadow: 0 8px 30px rgba(13,27,62,0.3);
}
.about-kepsek-photo h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 4px;
}
.about-kepsek-title {
  font-size: 0.82rem;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 18px;
}
.about-kepsek-contact {
  font-size: 0.78rem;
  color: #666;
}
.about-kepsek-contact div {
  margin-bottom: 6px;
}
.about-kepsek-contact i {
  color: #1976D2;
  margin-right: 6px;
  width: 16px;
}
.about-kepsek-message h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 18px;
}
.about-kepsek-message p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-kepsek-signature {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px solid #eee;
}
.about-kepsek-signature strong {
  display: block;
  font-size: 0.95rem;
  color: #1976D2;
}
.about-kepsek-signature span {
  font-size: 0.78rem;
  color: #888;
}

/* About - Program Prioritas */
.about-program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-program-card {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  transition: 0.3s;
}
.about-program-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-program-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #ffc107;
  font-size: 1.3rem;
}
.about-program-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 8px;
}
.about-program-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}

/* About - Facilities */
.about-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-facility-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  transition: 0.3s;
}
.about-facility-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-facility-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.about-facility-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 6px;
}
.about-facility-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}

/* About - Labs */
.about-lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-lab-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}
.about-lab-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-lab-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #ffc107;
  font-size: 1.3rem;
}
.about-lab-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 10px;
}
.about-lab-spec {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.about-lab-spec span {
  background: #f0f3f8;
  color: #1976D2;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* About - Accreditation Hero */
.about-accred-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #1976D2 0%, #1a3a6b 100%);
  border-radius: 20px;
  padding: 50px 40px;
}
.about-accred-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,193,7,0.15);
  padding: 24px 30px;
  border-radius: 16px;
  border: 2px solid rgba(255,193,7,0.3);
  min-width: 200px;
}
.about-accred-letter {
  font-size: 4rem;
  font-weight: 800;
  color: #ffc107;
  line-height: 1;
}
.about-accred-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.3;
}
.about-accred-info .section-tag {
  color: #ffc107;
}
.about-accred-info h2 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-accred-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-accred-details {
  display: flex;
  gap: 24px;
}
.about-accred-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.about-accred-detail-item i {
  color: #ffc107;
  font-size: 1rem;
  margin-top: 3px;
}
.about-accred-detail-item strong {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.about-accred-detail-item span {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

/* About - Cert Cards */
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-cert-card {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: 0.3s;
}
.about-cert-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-cert-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #ffc107;
  font-size: 1.3rem;
}
.about-cert-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1976D2;
  margin-bottom: 6px;
}
.about-cert-grade {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107, #e6a800);
  color: #1976D2;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.about-cert-card p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 12px;
}
.about-cert-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.about-cert-tags span {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* About - Awards */
.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-award-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.about-award-card:hover {
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.about-award-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107, #e6a800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #1976D2;
  font-size: 1.3rem;
}
.about-award-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 4px;
}
.about-award-card p {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 10px;
}
.about-award-year {
  display: inline-block;
  background: #1976D2;
  color: #ffc107;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* CTA Banner */
.program-cta {
  background: linear-gradient(135deg, #1976D2 0%, #1a3a6b 50%, #2563a8 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.program-cta::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,193,7,0.05);
  border-radius: 50%;
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.program-cta .container { position: relative; z-index: 2; }
.program-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.program-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  max-width: 500px;
  margin: 0 auto 28px;
}
.program-cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==================== BERITA LISTING PAGE ==================== */
.berita-section { background: #f8f9fa; }
.berita-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.berita-filter-btn {
  padding: 10px 22px;
  border: 2px solid #e0e4ed;
  border-radius: 50px;
  background: #fff;
  color: #555;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.berita-filter-btn:hover {
  border-color: #1976D2;
  color: #1976D2;
}
.berita-filter-btn.active {
  background: #1976D2;
  color: #fff;
  border-color: #1976D2;
}
.berita-filter-btn i { margin-right: 5px; font-size: 0.75rem; }

/* Featured News Card (listing) */
.berita-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  margin-bottom: 40px;
  transition: 0.3s;
}
.berita-featured-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.berita-featured-thumb {
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
}
.berita-featured-thumb i { font-size: 4rem; color: #1976D2; opacity: 0.2; }
.berita-featured-thumb .news-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: #1976D2;
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}
.berita-featured-body { padding: 35px; display: flex; flex-direction: column; justify-content: center; }
.berita-featured-body .news-date { font-size: 0.78rem; color: #999; margin-bottom: 12px; }
.berita-featured-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 14px;
  line-height: 1.4;
}
.berita-featured-body h2 a { color: #1976D2; text-decoration: none; }
.berita-featured-body h2 a:hover { color: #ffc107; }
.berita-featured-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.berita-featured-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

/* News Grid (listing) */
.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.berita-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.04);
  transition: 0.3s;
}
.berita-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.berita-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.berita-card-thumb i { font-size: 2.5rem; color: #1976D2; opacity: 0.2; }
.berita-card-body { padding: 22px; }
.berita-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.berita-card-category {
  display: inline-block;
  background: #e8edf5;
  color: #1976D2;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
}
.berita-card-date { font-size: 0.7rem; color: #aaa; }
.berita-card-date i { margin-right: 3px; }
.berita-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 10px;
  line-height: 1.4;
}
.berita-card-body h3 a { color: #1976D2; text-decoration: none; }
.berita-card-body h3 a:hover { color: #ffc107; }
.berita-card-body p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.berita-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1976D2;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.berita-card-link:hover { color: #ffc107; gap: 10px; }

/* Tag */
.berita-tag {
  display: inline-block;
  background: #e8edf5;
  color: #555;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 500;
}

/* Empty State */
.berita-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #999;
}
.berita-empty i { font-size: 3rem; margin-bottom: 15px; opacity: 0.3; }
.berita-empty h3 { font-size: 1.1rem; color: #555; margin-bottom: 8px; }
.berita-empty p { font-size: 0.85rem; }

/* Pagination */
.berita-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.berita-page-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e4ed;
  border-radius: 10px;
  background: #fff;
  color: #555;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.berita-page-btn:hover:not(:disabled) { border-color: #1976D2; color: #1976D2; }
.berita-page-btn.active { background: #1976D2; color: #fff; border-color: #1976D2; }
.berita-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ==================== BERITA DETAIL PAGE ==================== */
.berita-detail-hero .program-hero-text { max-width: 100%; }
.berita-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  margin-bottom: 35px;
}

/* Detail Header */
.berita-detail-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.berita-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.8rem;
  color: #888;
}
.berita-detail-meta i { margin-right: 5px; }
.berita-detail-cat-badge {
  display: inline-block;
  background: #1976D2;
  color: #ffc107;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Detail Body */
.berita-detail-body { line-height: 1.8; }
.berita-detail-body p {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 20px;
}
.berita-detail-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1976D2;
  margin: 30px 0 15px;
}
.berita-detail-body blockquote {
  background: linear-gradient(135deg, #f0f3f8, #e8edf5);
  border-left: 4px solid #ffc107;
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin: 25px 0;
}
.berita-detail-body blockquote p {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}
.berita-detail-body blockquote cite {
  display: block;
  font-size: 0.78rem;
  color: #888;
  font-style: normal;
  font-weight: 600;
}

/* Detail Tags */
.berita-detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: 25px;
  font-size: 0.8rem;
  color: #888;
}
.berita-detail-tags i { margin-right: 5px; }

/* Detail Nav (prev/next) */
.berita-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #f0f3f8;
}
.berita-nav-prev,
.berita-nav-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #f4f6fa;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.3s;
  flex: 1;
  max-width: 48%;
}
.berita-nav-next { justify-content: flex-end; text-align: right; margin-left: auto; }
.berita-nav-prev:hover,
.berita-nav-next:hover { background: #1976D2; color: #fff; }
.berita-nav-prev span,
.berita-nav-next span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Share Buttons */
.berita-detail-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 25px;
  background: #f4f6fa;
  border-radius: 12px;
  margin-bottom: 40px;
}
.berita-detail-share span { font-size: 0.85rem; font-weight: 600; color: #555; }
.berita-detail-share span i { margin-right: 5px; }
.berita-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}
.berita-share-wa { background: #25D366; }
.berita-share-wa:hover { background: #1ebe5d; transform: scale(1.1); }
.berita-share-fb { background: #1877F2; }
.berita-share-fb:hover { background: #1466d8; transform: scale(1.1); }
.berita-share-tw { background: #1DA1F2; }
.berita-share-tw:hover { background: #1890d9; transform: scale(1.1); }
.berita-share-copy { background: #555; }
.berita-share-copy:hover { background: #333; transform: scale(1.1); }

/* Sidebar */
.berita-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.berita-sidebar-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.berita-sidebar-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f3f8;
}
.berita-sidebar-card h4 i {
  margin-right: 6px;
  color: #ffc107;
}

/* Sidebar Search */
.berita-search {
  display: flex;
  gap: 8px;
}
.berita-search input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid #e0e4ed;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  outline: none;
  transition: 0.3s;
}
.berita-search input:focus { border-color: #1976D2; }
.berita-search button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #1976D2;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.berita-search button:hover { background: #ffc107; color: #1976D2; }

/* Sidebar Categories */
.berita-sidebar-categories {
  list-style: none;
  padding: 0;
}
.berita-sidebar-categories li {
  margin-bottom: 8px;
}
.berita-sidebar-categories li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  text-decoration: none;
  font-size: 0.82rem;
  padding: 7px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
.berita-sidebar-categories li a:hover {
  background: #f4f6fa;
  color: #1976D2;
}
.berita-sidebar-categories li a i { font-size: 0.65rem; color: #ffc107; }

/* Sidebar Recent Posts */
.berita-sidebar-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f3f8;
}
.berita-sidebar-post:last-child { border-bottom: none; }
.berita-sidebar-post-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.berita-sidebar-post-icon i { font-size: 0.85rem; color: #1976D2; opacity: 0.35; }
.berita-sidebar-post-info a {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 4px;
}
.berita-sidebar-post-info a:hover { color: #ffc107; }
.berita-sidebar-post-info span { font-size: 0.68rem; color: #aaa; }
.berita-sidebar-post-info span i { margin-right: 3px; }

/* Sidebar Tags */
.berita-sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.berita-sidebar-tag {
  display: inline-block;
  background: #f4f6fa;
  color: #666;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: 0.3s;
  cursor: default;
}
.berita-sidebar-tag:hover { background: #1976D2; color: #fff; }

/* Related Articles */
.berita-related { margin-top: 10px; }
.berita-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

/* Not Found */
.berita-detail-notfound {
  text-align: center;
  padding: 60px 20px;
}
.berita-detail-notfound i { font-size: 3rem; color: #ffc107; margin-bottom: 15px; }
.berita-detail-notfound h3 { font-size: 1.2rem; color: #333; margin-bottom: 10px; }
.berita-detail-notfound p { font-size: 0.9rem; color: #888; margin-bottom: 25px; }

/* Detail Loading */
.berita-detail-loading {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.berita-detail-loading i { font-size: 2rem; margin-bottom: 10px; color: #1976D2; }

/* Program page responsive */
@media (max-width: 992px) {
  .program-hero-content { flex-direction: column; text-align: center; }
  .program-hero-text p { margin-left: auto; margin-right: auto; }
  .program-hero-buttons { justify-content: center; }
  .program-hero-visual { display: none; }
  .kompetensi-grid { grid-template-columns: 1fr 1fr; }
  .prospek-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .program-hero { padding: 110px 0 50px; }
  .program-hero-text h1 { font-size: 1.6rem; }
  .kompetensi-grid { grid-template-columns: 1fr; }
  .fasilitas-grid { grid-template-columns: 1fr; }
  .prospek-grid { grid-template-columns: 1fr; }
  .testimoni-grid { grid-template-columns: 1fr; }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 45px; height: 45px;
  background: #1976D2;
  color: #ffc107;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13,27,62,0.3);
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 999;
}
.scroll-top:hover { background: #ffc107; color: #1976D2; transform: translateY(-3px); }

/* ==================== RESPONSIVE ==================== */

/* --- Tablet (max-width: 992px) --- */
@media (max-width: 992px) {
  body { padding-top: 70px; }
  .top-bar { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -300px;
    width: 300px; height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    padding: 80px 20px 30px;
    z-index: 999;
    transition: right 0.35s ease;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav-links.active { right: 0; }
  .nav-links a {
    padding: 12px 18px;
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
  }
  .nav-links a:hover, .nav-links a.active {
    background: #f0f3f8;
    color: #1976D2;
  }
  .nav-links .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: block !important;
  }
  .nav-links .dropdown.dropdown-open .dropdown-content {
    max-height: 500px;
    padding: 5px 0 5px 15px;
  }
  .nav-links .dropdown.dropdown-open > a .fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav-links .dropdown > a .fa-chevron-down {
    transition: transform 0.3s ease;
  }
  .nav-links .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links .dropdown-content a {
    padding: 9px 18px;
    font-size: 0.82rem;
    border-radius: 8px;
  }
  .berita-featured-card { grid-template-columns: 1fr; }
  .berita-grid { grid-template-columns: 1fr 1fr; }
  .berita-detail-layout { grid-template-columns: 1fr; }
  .berita-related-grid { grid-template: 1fr 1fr; }
  .berita-detail-nav { flex-direction: column; }
  .berita-nav-prev, .berita-nav-next { max-width: 100%; }
}

/* --- Desktop (min-width: 993px) - Ensure nav-links don't overflow --- */
@media (min-width: 993px) {
  .nav-links {
    max-width: calc(100% - 200px);
  }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.82rem; }
  .container { padding: 0 16px; }
  .hero-slide { min-height: 85vh; }
  .hero-slide-text h2 { font-size: 1.6rem; }
  .hero-slide-text p { font-size: 0.85rem; line-height: 1.6; }
  .hero-slide-text .hero-badge { font-size: 0.68rem; padding: 5px 14px; }
  .hero-slide-buttons { flex-direction: column; align-items: center; }
  .hero-slide-buttons a { width: 100%; max-width: 280px; justify-content: center; text-align: center; }
  .hero-slider-nav { display: none; }
  .stats-bar { margin-top: -25px; border-radius: 12px; padding: 20px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-group { border-right: none; border-bottom: 1px solid #eee; padding: 15px; }
  .stat-group:last-child { border-bottom: none; }
  .stat-group .stat-number { font-size: 1.6rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card { padding: 30px 22px; }
  .pendaftaran-grid { grid-template-columns: 1fr 1fr; }
  .pendaftaran-card { padding: 22px 16px; }
  .biaya-grid { grid-template-columns: 1fr; }
  .biaya-card-header { padding: 16px 18px; }
  .biaya-card-body { padding: 14px 18px 18px; }
  .news-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .about-image-placeholder { height: 250px; }
  .fm-grid { flex-direction: column; align-items: center; }
  .fm-card { width: 100%; max-width: 300px; justify-content: center; }
  .assets-grid { grid-template-columns: 1fr; }
  .asset-card { padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; }
  .footer-logos { justify-content: center; }
  /* Jurusan tabs */
  .jurusan-tabs { flex-direction: column; align-items: stretch; }
  .jurusan-tab { justify-content: flex-start; }
  /* About pages */
  .about-tabs { flex-direction: column; align-items: stretch; }
  .about-tab { justify-content: flex-start; }
  .about-split-layout { grid-template-columns: 1fr; }
  .about-data-grid { grid-template-columns: 1fr; }
  .about-org-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-goals-grid { grid-template-columns: 1fr; }
  .about-kepsek-layout { grid-template-columns: 1fr; }
  .about-program-grid { grid-template-columns: 1fr; }
  .about-facility-grid { grid-template-columns: 1fr; }
  .about-lab-grid { grid-template-columns: 1fr; }
  .about-accred-hero { flex-direction: column; text-align: center; }
  .about-accred-details { flex-direction: column; align-items: center; }
  .about-cert-grid { grid-template-columns: 1fr; }
  .about-awards-grid { grid-template-columns: 1fr; }
  .program-sub-section.alt-bg { margin: 0; padding: 40px 15px; }
  /* Berita pages */
  .berita-grid { grid-template-columns: 1fr; }
  .berita-related-grid { grid-template-columns: 1fr; }
  .berita-filter { gap: 6px; }
  .berita-filter-btn { padding: 8px 14px; font-size: 0.75rem; }
  .berita-detail-share { flex-wrap: wrap; gap: 10px; padding: 16px; }
  .berita-detail-meta { gap: 10px; font-size: 0.75rem; }
  .berita-detail-body p { font-size: 0.85rem; }
  .berita-sidebar-card { padding: 18px; }
}

/* --- Small Mobile (max-width: 576px) --- */
@media (max-width: 576px) {
  .hero-slide { min-height: 80vh; }
  .hero-slide-text h2 { font-size: 1.35rem; }
  .hero-slide-text p { font-size: 0.8rem; }
  .hero-slide-text .hero-badge { font-size: 0.62rem; margin-bottom: 14px; }
  .hero-slide-buttons { gap: 10px; }
  .hero-slide-buttons a { font-size: 0.8rem; padding: 11px 22px; }
  .pendaftaran-grid { grid-template-columns: 1fr; }
  .pendaftaran-card { padding: 20px 16px; }
  .pendaftaran-icon { width: 50px; height: 50px; font-size: 1.2rem; }
  .biaya-grid { grid-template-columns: 1fr; }
  .biaya-card { margin: 0 -10px; border-radius: 12px; }
  .stat-group-label { font-size: 0.65rem; }
  .stat-group .stat-number { font-size: 1.4rem; }
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 1.3rem; }
  .program-card { padding: 25px 18px; }
  .program-icon { width: 65px; height: 65px; font-size: 1.6rem; border-radius: 18px; }
  .about-data-grid { grid-template-columns: 1fr; }
  .about-org-grid { grid-template-columns: 1fr; }
  .about-program-grid { grid-template-columns: 1fr; }
  .about-facility-grid { grid-template-columns: 1fr; }
  .about-lab-grid { grid-template-columns: 1fr; }
  .about-awards-grid { grid-template-columns: 1fr; }
  .berita-card-thumb { height: 150px; }
  .berita-card-body { padding: 18px; }
  .berita-nav-prev span, .berita-nav-next span { font-size: 0.75rem; }
  .program-hero { padding: 120px 0 50px; }
  .program-hero-text h1 { font-size: 1.4rem; }
  .program-fulltitle { font-size: 0.85rem; }
  .program-hero-buttons { flex-direction: column; align-items: center; }
  .program-hero-buttons a { width: 100%; max-width: 280px; justify-content: center; }
  .program-cta { padding: 40px 0; }
  .program-cta h2 { font-size: 1.3rem; }
  .program-cta p { font-size: 0.82rem; }
  .program-cta-buttons { flex-direction: column; align-items: center; }
  .scroll-top { width: 40px; height: 40px; bottom: 20px; right: 20px; font-size: 0.95rem; border-radius: 10px; }
}

/* ==================== GALLERY PREVIEW (Index Page) ==================== */
.gallery-preview { background: #fff; }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-preview-item {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
}
.gallery-preview-img {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.gallery-preview-img > i {
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
  transition: 0.4s;
  z-index: 1;
}
.gallery-preview-item:hover .gallery-preview-img > i {
  transform: scale(1.2);
  color: rgba(255,255,255,0.7);
}
.gallery-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 18px 16px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s;
}
.gallery-preview-item:hover .gallery-preview-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-preview-title {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.gallery-preview-cat {
  font-size: 0.72rem;
  color: #ffc107;
}
.gallery-preview-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.4s;
  backdrop-filter: blur(4px);
}
.gallery-preview-item:hover .gallery-preview-zoom {
  opacity: 1;
  transform: scale(1);
}
.gallery-preview-more {
  text-align: center;
  margin-top: 35px;
}

/* ==================== GALLERY HERO (Gallery Page) ==================== */
.gallery-hero {
  position: relative;
  padding: 160px 0 60px;
  background: linear-gradient(135deg, #1976D2 0%, #1a3a6b 50%, #2a5298 100%);
  overflow: hidden;
}
.gallery-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}
.gallery-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.gallery-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 15px 0 12px;
}
.gallery-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.gallery-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.gallery-hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}
.gallery-hero-stat i {
  color: #ffc107;
  font-size: 1.1rem;
}

/* ==================== GALLERY FILTER ==================== */
.galery-section { background: #f8f9fa; }
.galery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.galery-filter-btn {
  padding: 10px 22px;
  border: 2px solid #e0e5ec;
  background: #fff;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.galery-filter-btn:hover {
  border-color: #1976D2;
  color: #1976D2;
  background: #f0f3f8;
}
.galery-filter-btn.active {
  background: #1976D2;
  color: #fff;
  border-color: #1976D2;
  box-shadow: 0 4px 15px rgba(13,27,62,0.3);
}

/* ==================== GALLERY GRID ==================== */
.galery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.galery-item {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: 0.4s;
  animation: galeryFadeIn 0.5s ease forwards;
}
@keyframes galeryFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.galery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.galery-item.hidden {
  display: none;
}
.galery-img {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.galery-img > i {
  font-size: 2.8rem;
  color: rgba(255,255,255,0.35);
  transition: 0.4s;
  z-index: 1;
}
.galery-item:hover .galery-img > i {
  transform: scale(1.3) rotate(5deg);
  color: rgba(255,255,255,0.6);
}
.galery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: 0.3s;
  pointer-events: none;
}
.galery-play-btn i {
  font-size: 1.1rem;
  color: #1976D2;
  margin-left: 4px;
  transform: none;
}
.galery-item:hover .galery-play-btn,
.gallery-preview-item:hover .galery-play-btn {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.7);
}
.gallery-preview-img .galery-play-btn {
  width: 46px;
  height: 46px;
}
.gallery-preview-img .galery-play-btn i {
  font-size: 0.95rem;
}
.galery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,18,42,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.galery-item:hover .galery-overlay { opacity: 1; }
.galery-overlay-content {
  text-align: center;
  padding: 18px;
  color: #fff;
  transform: translateY(15px);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
  width: 100%;
}
.galery-item:hover .galery-overlay-content { transform: translateY(0); }
.galery-overlay-cat {
  display: inline-block;
  background: rgba(255,193,7,0.25);
  color: #ffd54f;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(255,193,7,0.3);
}
.galery-overlay-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.galery-overlay-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.galery-preview-btn {
  background: #ffc107;
  color: #1976D2;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  flex-shrink: 0;
}
.galery-preview-btn:hover {
  background: #fff;
  transform: scale(1.05);
}
.galery-caption {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.galery-caption-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1976D2;
}
.galery-caption-date {
  font-size: 0.68rem;
  color: #aaa;
}
.galery-caption-date i { margin-right: 3px; }

/* Gallery Load More */
.galery-loadmore-wrap {
  text-align: center;
  margin-top: 40px;
}
.galery-loadmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 20px rgba(13,27,62,0.3);
}
.galery-loadmore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13,27,62,0.4);
  background: linear-gradient(135deg, #1a3a6b, #2a5298);
}
.galery-loadmore-btn:active {
  transform: translateY(-1px);
}
.galery-loadmore-btn i {
  font-size: 1.1rem;
  transition: 0.3s;
}
.galery-loadmore-btn:hover i {
  transform: rotate(90deg);
}
.galery-loadmore-sentinel {
  height: 1px;
  width: 100%;
}

/* Gallery Loading Indicator */
.galery-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  color: #888;
  font-size: 0.85rem;
}
.galery-loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e0e5ec;
  border-top-color: #1976D2;
  border-radius: 50%;
  animation: galerySpin 0.8s linear infinite;
}
@keyframes galerySpin {
  to { transform: rotate(360deg); }
}

/* Gallery End Message */
.galery-end {
  text-align: center;
  margin-top: 40px;
  color: #aaa;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.galery-end i {
  color: #28a745;
  font-size: 1.1rem;
}

/* Gallery Empty State */
.galery-empty {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.galery-empty i { font-size: 3rem; margin-bottom: 15px; display: block; }
.galery-empty h3 { font-size: 1.1rem; color: #555; margin-bottom: 8px; }
.galery-empty p { font-size: 0.85rem; }

/* ==================== GALLERY LIGHTBOX ==================== */
.galery-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.galery-lightbox.active {
  display: flex;
}
.galery-lightbox-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.galery-lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  animation: lbSlideIn 0.4s ease;
}
@keyframes lbSlideIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.galery-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  z-index: 5;
}
.galery-lightbox-close:hover {
  background: #ffc107;
  color: #1976D2;
  border-color: #ffc107;
}
.galery-lightbox-prev,
.galery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  z-index: 5;
  backdrop-filter: blur(4px);
}
.galery-lightbox-prev { left: -60px; }
.galery-lightbox-next { right: -60px; }
.galery-lightbox-prev:hover,
.galery-lightbox-next:hover {
  background: #ffc107;
  color: #1976D2;
  border-color: #ffc107;
}
.galery-lightbox-content {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.galery-lightbox-content .lb-visual {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.galery-lightbox-content .lb-visual.lb-video {
  background: #000;
  padding: 0;
}
.galery-lightbox-content .lb-visual iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 16px;
}
.galery-lightbox-content .lb-visual i {
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
}
.galery-lightbox-info {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.galery-lightbox-info .lb-info-title {
  font-size: 0.95rem;
  font-weight: 600;
}
.galery-lightbox-info .lb-info-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.galery-lightbox-info .lb-info-date {
  font-size: 0.75rem;
  color: #ffc107;
  font-weight: 500;
  white-space: nowrap;
}
.galery-lightbox-counter {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 10px;
}

/* ==================== GALLERY RESPONSIVE ==================== */
@media (max-width: 992px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .galery-grid { grid-template-columns: repeat(3, 1fr); }
  .galery-lightbox-prev { left: 10px; }
  .galery-lightbox-next { right: 10px; }
}
@media (max-width: 768px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .galery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-hero-content h1 { font-size: 2rem; }
  .gallery-hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .galery-lightbox-container { width: 95%; }
  .galery-lightbox-content .lb-visual { height: 280px; }
  .galery-lightbox-prev { left: 5px; width: 36px; height: 36px; }
  .galery-lightbox-next { right: 5px; width: 36px; height: 36px; }
  .galery-lightbox-info { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .galery-grid { grid-template-columns: 1fr; }
  .gallery-preview-img { height: 180px; }
  .gallery-hero-content h1 { font-size: 1.6rem; }
  .galery-lightbox-content .lb-visual { height: 220px; }
  .galery-lightbox-content .lb-visual i { font-size: 3rem; }
}

/* ==================== BA CARD FOOTER (Home Page) ==================== */
.ba-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}
.ba-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1976D2;
  transition: 0.3s;
}
.ba-see-all:hover {
  color: #ffc107;
  gap: 10px;
}
.ba-card-list li {
  position: relative;
  transition: 0.2s;
}
.ba-card-list li::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  transition: 0.3s;
  opacity: 0;
}
.ba-card-list li:hover::after {
  opacity: 1;
  right: 8px;
}

/* ==================== BURSA KERJA PAGE ==================== */
.bk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bk-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.bk-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #1976D2, #1a3a6b);
  transform: scaleX(0);
  transition: 0.4s;
}
.bk-item:hover::before { transform: scaleX(1); }
.bk-item.hidden {
  display: none;
}
.bk-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(13,27,62,0.1);
}
.bk-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.bk-item-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #1976D2;
  transition: 0.3s;
}
.bk-item:hover .bk-item-icon {
  background: linear-gradient(135deg, #1976D2, #1a3a6b);
  color: #ffc107;
}
.bk-item-logo {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  transition: 0.3s;
}
.bk-modal-logo {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
}
.bk-item-type {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.bk-type-full {
  background: rgba(76,175,80,0.1);
  color: #4caf50;
}
.bk-type-part {
  background: rgba(255,152,0,0.1);
  color: #ff9800;
}
.bk-type-intern {
  background: rgba(33,150,243,0.1);
  color: #2196f3;
}
.bk-item-company {
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
  margin-bottom: 4px;
}
.bk-item-position {
  font-size: 1rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 12px;
  line-height: 1.3;
}
.bk-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.bk-item-meta span {
  font-size: 0.72rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}
.bk-item-meta i {
  color: #ffc107;
  font-size: 0.7rem;
}
.bk-item-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bk-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.bk-item-cat {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.bk-cat-it {
  background: rgba(33,150,243,0.1);
  color: #2196f3;
}
.bk-cat-office {
  background: rgba(156,39,176,0.1);
  color: #9c27b0;
}
.bk-cat-acc {
  background: rgba(255,152,0,0.1);
  color: #ff9800;
}
.bk-item-deadline {
  font-size: 0.7rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bk-item-deadline i { color: #ffc107; font-size: 0.65rem; }

/* ==================== ALUMNI PAGE ==================== */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.alumni-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
}
.alumni-item.hidden {
  display: none;
}
.alumni-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(13,27,62,0.1);
}
.alumni-item-avatar {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.alumni-item-avatar i {
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
}
.alumni-item-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.alumni-item-year {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
}
.alumni-item-body {
  padding: 22px 20px;
}
.alumni-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 3px;
}
.alumni-item-role {
  font-size: 0.78rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 6px;
}
.alumni-item-company {
  font-size: 0.73rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.alumni-item-company i { color: #ffc107; font-size: 0.65rem; }
.alumni-item-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.alumni-item-major {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,193,7,0.1);
  color: #ffc107;
  letter-spacing: 0.5px;
}
.alumni-item-location {
  font-size: 0.7rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}
.alumni-item-location i { font-size: 0.6rem; color: #ffc107; }
.alumni-item-story {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
}

/* ==================== MODAL (Bursa Kerja & Alumni) ==================== */
.bk-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.bk-modal.active {
  display: flex;
}
.bk-modal-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,18,42,0.7);
  backdrop-filter: blur(4px);
}
.bk-modal-container {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 600px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.bk-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: #f4f6fa;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  transition: 0.3s;
  z-index: 5;
}
.bk-modal-close:hover {
  background: #1976D2;
  color: #fff;
}
.bk-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.bk-modal-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #e8edf5, #c5cfe6);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #1976D2;
  flex-shrink: 0;
}
.bk-modal-company {
  font-size: 0.8rem;
  color: #999;
  font-weight: 500;
}
.bk-modal-position {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1976D2;
}
.bk-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.bk-modal-tag {
  font-size: 0.72rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f4f6fa;
  padding: 5px 12px;
  border-radius: 20px;
}
.bk-modal-tag i { color: #ffc107; font-size: 0.65rem; }
.bk-modal-section {
  margin-bottom: 20px;
}
.bk-modal-section h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1976D2;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bk-modal-section h4 i {
  color: #ffc107;
  font-size: 0.85rem;
}
.bk-modal-section p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}
.bk-modal-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-modal-section ul li {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.bk-modal-section ul li i {
  color: #4caf50;
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.bk-modal-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bk-benefit-tag {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.bk-modal-footer-info {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.bk-modal-footer-info span {
  font-size: 0.72rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}
.bk-modal-footer-info i { color: #ffc107; font-size: 0.65rem; }

/* Alumni Modal Top */
.alumni-modal-top {
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 20px;
}
.alumni-modal-avatar {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.alumni-modal-avatar i { font-size: 2.2rem; color: #fff; }
.alumni-modal-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ==================== WIZARD (PENDAFTARAN) ==================== */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 0 10px;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.wizard-step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #e9ecef;
  color: #999;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  flex-shrink: 0;
}
.wizard-step.active .wizard-step-num {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}
.wizard-step.completed .wizard-step-num {
  background: #27ae60;
  color: #fff;
}
.wizard-step-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #999;
  white-space: nowrap;
}
.wizard-step.active .wizard-step-label,
.wizard-step.completed .wizard-step-label {
  color: #333;
}
.wizard-step-line {
  width: 40px;
  height: 3px;
  background: #e9ecef;
  margin: 0 8px;
  border-radius: 2px;
  transition: background 0.3s;
}
.wizard-step.completed + .wizard-step-line {
  background: #27ae60;
}
/* Wizard Panel */
.wizard-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 0;
  overflow: hidden;
}
.wizard-panel {
  display: none;
  padding: 32px 36px;
  animation: fadeUp 0.3s ease;
}
.wizard-panel.active { display: block; }
.wizard-panel-header {
  margin-bottom: 24px;
}
.wizard-panel-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.wizard-panel-header h3 i {
  color: #ffc107;
  margin-right: 6px;
}
.wizard-panel-header p {
  font-size: 0.85rem;
  color: #999;
}
.wizard-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.wizard-form-grid .full-width { grid-column: 1 / -1; }
/* Form Elements */
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.form-group .req { color: #e74c3c; }
.guru-pendamping-wrapper { display: flex; flex-direction: column; }
.form-input {
  padding: 10px 14px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #f8f9fa;
}
.form-input:focus {
  outline: none;
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.15);
  background: #fff;
}
.form-input::placeholder { color: #bbb; }
textarea.form-input { resize: vertical; min-height: 60px; }
select.form-input { cursor: pointer; }
/* Jurusan Options */
.jurusan-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jurusan-option input { display: none; }
.jurusan-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.jurusan-option-card:hover {
  border-color: #ffc107;
  background: #fffdf5;
}
.jurusan-option input:checked + .jurusan-option-card {
  border-color: #ffc107;
  background: #fff8e1;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.15);
}
.jurusan-option-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jurusan-option-icon i { font-size: 1.2rem; color: #fff; }
.jurusan-option-info strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
}
.jurusan-option-info span {
  font-size: 0.78rem;
  color: #999;
}
/* Upload Areas */
.upload-area {
  border: 2px dashed #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}
.upload-area:hover {
  border-color: #ffc107;
  background: #fffdf5;
}
.upload-area.dragover {
  border-color: #ffc107;
  background: #fff8e1;
}
.upload-placeholder i {
  font-size: 2rem;
  color: #ccc;
  margin-bottom: 8px;
  display: block;
}
.upload-placeholder p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 4px;
}
.upload-placeholder span {
  font-size: 0.75rem;
  color: #aaa;
}
.upload-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.upload-preview img {
  width: 70px; height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #eee;
}
.upload-file-icon {
  width: 50px; height: 50px;
  background: #fee;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.upload-file-icon i { font-size: 1.4rem; color: #e74c3c; }
.upload-file-name { font-size: 0.85rem; color: #333; font-weight: 500; flex:1; }
.upload-remove {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fee;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.upload-remove:hover { background: #e74c3c; color: #fff; }
/* Wizard Nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 36px 28px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}
.wizard-btn {
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.wizard-prev {
  background: #e9ecef;
  color: #666;
}
.wizard-prev:hover { background: #dee2e6; }
.wizard-next {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #fff;
  margin-left: auto;
}
.wizard-next:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255,193,7,0.4); }
.wizard-submit {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
  margin-left: auto;
}
.wizard-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(39,174,96,0.4); }
/* Wizard Summary */
.wizard-summary { padding: 0 4px; }
.summary-section {
  margin-bottom: 20px;
}
.summary-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.summary-section h4 i {
  color: #ffc107;
  margin-right: 6px;
}
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.summary-item {
  padding: 6px 0;
}
.summary-label {
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
  margin-bottom: 2px;
}
.summary-value {
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
}
/* Wizard Confirm */
.wizard-confirm {
  padding: 16px 0 0;
  border-top: 2px solid #f0f0f0;
  margin-top: 16px;
}
.wizard-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}
.wizard-checkbox input { margin-top: 3px; accent-color: #ffc107; }
/* Wizard Success */
.wizard-success-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 4px;
}
.wizard-success-code {
  display: inline-block;
  background: #f8f9fa;
  border: 2px dashed #27ae60;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #27ae60;
  letter-spacing: 1px;
}

/* ==================== KONTAK PAGE ==================== */
.kontak-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.kontak-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.kontak-info-card:hover { transform: translateY(-4px); }
.kontak-info-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.kontak-info-icon i { font-size: 1.3rem; color: #fff; }
.kontak-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.kontak-info-card p {
  font-size: 0.82rem;
  color: #666;
  margin: 2px 0;
}
.kontak-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.kontak-map-wrap,
.kontak-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.kontak-map-wrap h3,
.kontak-form-wrap h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.kontak-map-wrap h3 i,
.kontak-form-wrap h3 i {
  color: #ffc107;
  margin-right: 6px;
}
.kontak-map {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 12px;
}
.kontak-map-link {
  text-align: center;
}
.kontak-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.3s;
}
.kontak-map-link a:hover { background: #e8f0fe; }
.kontak-form-wrap .form-group {
  margin-bottom: 14px;
}
/* Social Cards */
.kontak-social-section {
  text-align: center;
}
.kontak-social-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.kontak-social-section p {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 24px;
}
.kontak-social-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kontak-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: all 0.3s;
  min-width: 120px;
}
.kontak-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.kontak-social-card i {
  font-size: 1.6rem;
  color: var(--sc, #333);
}
.kontak-social-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}
.kontak-social-card small {
  font-size: 0.72rem;
  color: #999;
}

/* ==================== RESPONSIVE: PENDAFTARAN & KONTAK ==================== */
@media (max-width: 992px) {
  .kontak-info-grid { grid-template-columns: repeat(2, 1fr); }
  .kontak-main-grid { grid-template-columns: 1fr; }
  .alur-flow { gap: 16px; }
  .alur-arrow { display: none; }
  .stats-share-wrapper { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .wizard-progress { flex-wrap: wrap; gap: 4px; }
  .wizard-step-label { display: none; }
  .wizard-step-line { width: 24px; margin: 0 4px; }
  .wizard-panel { padding: 24px 20px; }
  .wizard-nav { padding: 16px 20px 24px; }
  .wizard-form-grid { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .kontak-info-grid { grid-template-columns: 1fr 1fr; }
  .kontak-map { height: 250px; }
  .kontak-social-grid { gap: 10px; }
  .kontak-social-card { min-width: 100px; padding: 14px 12px; }
  .alur-item { max-width: 160px; padding: 24px 18px 20px; display: flex; flex-direction: column; }
  .alur-item h4 { font-size: 0.85rem; }
  .alur-item p { flex: 1; }
  .cta-box { padding: 40px 20px; }
  .cta-content h3 { font-size: 1.3rem; }
}
@media (max-width: 576px) {
  .kontak-info-grid { grid-template-columns: 1fr; }
  .kontak-map { height: 200px; }
  .kontak-social-card { min-width: 80px; }
  .alur-flow { flex-direction: column; align-items: center; }
  .alur-item { max-width: 260px; width: 100%; display: flex; flex-direction: column; }
  .alur-item p { flex: 1; }
  .stats-share-grid { gap: 10px; }
  .stat-share-item { padding: 12px 14px; }
  .stats-share-buttons { justify-content: center; }
  .cta-box { padding: 30px 16px; }
  .cta-content h3 { font-size: 1.1rem; }
  .cta-content p { font-size: 0.85rem; }
}
.alumni-modal-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.alumni-modal-role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* ==================== BURSA KERJA RESPONSIVE ==================== */
@media (max-width: 992px) {
  .bk-grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bk-grid { grid-template-columns: 1fr; }
  .alumni-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .bk-modal-container { padding: 24px; max-height: 90vh; }
  .bk-modal-header { flex-direction: column; text-align: center; }
  .bk-modal-tags { justify-content: center; }
  .bk-modal-footer-info { flex-direction: column; gap: 8px; }
  .alumni-modal-top { padding: 24px 16px; }
}
@media (max-width: 576px) {
  .bk-modal-container { padding: 20px; border-radius: 16px; }
  .bk-item { padding: 22px 18px; }
  .alumni-item-body { padding: 18px 16px; }
}

/* ==================== GURU & TENAGA PENGAJAR ==================== */
.guru-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
}
.guru-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.guru-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.guru-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(79,125,249,0.15);
}
.guru-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f1f5f9;
}
.guru-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.guru-card:hover .guru-photo img {
  transform: scale(1.08);
}
.guru-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 2.5rem;
}
.guru-info {
  padding: 14px 12px 18px;
}
.guru-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e293b;
  line-height: 1.3;
}
.guru-subject {
  font-size: 0.78rem;
  color: var(--primary, #4f7df9);
  font-weight: 500;
  display: inline-block;
  padding: 2px 12px;
  background: rgba(79,125,249,0.08);
  border-radius: 20px;
}

/* Guru Page Hero */
.guru-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5e 100%);
  overflow: hidden;
  margin-top: -1px;
}
.guru-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5e 100%);
  opacity: 0.9;
}
.guru-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,125,249,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.guru-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(118,75,162,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.guru-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
}
.guru-hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 12px;
}
.guru-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.guru-hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.guru-hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.guru-hero-stat i {
  font-size: 1.1rem;
  color: #ffc107;
}
.guru-page-section {
  background: #fff;
}
.guru-page-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.guru-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.guru-pagination .pagination {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.guru-pagination .page-item {
  margin: 0;
}
.guru-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  background: #fff;
}
.guru-pagination .page-link:hover {
  border-color: var(--primary, #4f7df9);
  color: var(--primary, #4f7df9);
  background: rgba(79,125,249,0.05);
}
.guru-pagination .page-item.active .page-link {
  background: var(--primary, #4f7df9);
  border-color: var(--primary, #4f7df9);
  color: #fff;
}
.guru-pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Guru Modal */
.guru-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
}
.guru-modal.active {
  visibility: visible;
  opacity: 1;
}
.guru-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.guru-modal-container {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.guru-modal.active .guru-modal-container {
  transform: scale(1) translateY(0);
}
.guru-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #64748b;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}
.guru-modal-close:hover {
  background: #fff;
  color: #1e293b;
  transform: rotate(90deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.guru-modal-content {
  padding: 0;
}
.guru-modal-loading {
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
  font-size: 0.95rem;
}
.guru-modal-loading i {
  margin-right: 8px;
}
.guru-modal-body {
  display: flex;
  flex-direction: column;
}
.guru-modal-photo {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px 24px 0 0;
  position: relative;
}
.guru-modal-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.guru-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.guru-modal-container:hover .guru-modal-photo img {
  transform: scale(1.03);
}

/* ==================== SWEETALERT2 VALIDATION STYLES ==================== */
.swal2-validation .swal2-html-container {
  text-align: left;
  padding: 1.25em 1.5em;
  line-height: 1.6;
  font-size: 0.95rem;
}
.swal2-validation .swal2-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c2b3a;
}
.swal2-validation .swal2-icon {
  margin-bottom: 0.75em;
}
.swal2-validation .swal2-confirm {
  border-radius: 50px;
  padding: 0.75em 2em;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}
.swal2-validation .swal2-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}
.guru-modal-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 3rem;
}
.guru-modal-detail {
  padding: 28px 32px;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.guru-modal-detail h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.guru-modal-subject {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: var(--primary, #4f7df9);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 16px;
}
.guru-modal-subject i {
  font-size: 0.8rem;
}
.guru-modal-bio {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 3px solid var(--primary, #4f7df9);
}
.guru-modal-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.guru-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #475569;
  transition: all 0.2s;
}
.guru-contact-item:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}
.guru-contact-item i {
  width: 20px;
  color: var(--primary, #4f7df9);
  font-size: 1rem;
}
.guru-modal-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.guru-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.2rem;
  transition: all 0.25s;
}
.guru-social-link:hover {
  background: var(--primary, #4f7df9);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(79, 125, 249, 0.3);
}

/* Guru Responsive */
@media (max-width: 992px) {
  .guru-hero { min-height: 260px; }
  .guru-hero-content h1 { font-size: 1.8rem; }
  .guru-grid { grid-template-columns: repeat(3, 1fr); }
  .guru-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .guru-hero { min-height: 220px; }
  .guru-hero-content h1 { font-size: 1.5rem; }
  .guru-hero-stats { flex-direction: column; align-items: center; gap: 8px; }
  .guru-grid { grid-template-columns: repeat(2, 1fr); }
  .guru-page-grid { grid-template-columns: repeat(2, 1fr); }
  .guru-modal-body { flex-direction: column; }
  .guru-modal-photo { max-height: 250px; border-radius: 24px 24px 0 0; }
  .guru-modal-container { max-height: 85vh; }
  .guru-modal-detail { padding: 24px; }
  .guru-modal-detail h2 { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .guru-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guru-page-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guru-info { padding: 10px 8px 14px; }
  .guru-info h4 { font-size: 0.8rem; }
  .guru-subject { font-size: 0.7rem; padding: 1px 8px; }
  .guru-hero-content h1 { font-size: 1.3rem; }
  .guru-modal { padding: 10px; }
  .guru-modal-container { border-radius: 20px; max-height: 95vh; }
  .guru-modal-photo { max-height: 220px; border-radius: 20px 20px 0 0; }
  .guru-modal-detail { padding: 20px; }
  .guru-modal-detail h2 { font-size: 1.2rem; }
  .guru-contact-item { padding: 10px 14px; font-size: 0.85rem; }
  .guru-social-link { width: 40px; height: 40px; font-size: 1.1rem; }
}
