/* =========================================================
   GLOBAL - FONT POPPINS
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7f8;
  color: #18202b;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1400px, 92%);
  margin: auto;
}

/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
  height: 75px;
  padding: 0;
  background: linear-gradient(100deg, #063d2b, #08765c, #0c9d89);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  animation: slideDown 0.5s ease;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-social {
  display: flex;
  gap: 14px;
  margin-left: 80px;
}

.top-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  transition: 0.3s;
  font-size: 1rem;
}

.top-social a:hover {
  background: white;
  color: #08765c;
  transform: translateY(-2px);
}

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(145deg, #1a9e7a, #0dae76, #19c98b);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow:
    0 6px 20px rgba(19, 201, 139, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.1),
    inset 0 3px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 100px; /* tambahkan ini, sesuaikan angkanya */
}

.register-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: 0.6s ease;
}

.register-btn:hover::before {
  transform: rotate(45deg) translateX(100%);
}

.register-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(19, 201, 139, 0.45),
    inset 0 -3px 0 rgba(0, 0, 0, 0.1),
    inset 0 3px 0 rgba(255, 255, 255, 0.25);
}

.register-btn:active {
  transform: translateY(0px) scale(0.97);
}

.register-btn i {
  font-size: 1.1rem;
}

/* =========================================================
   HEADER
========================================================= */

.main-header {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99998;
  background: white;
  padding: 18px 0 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.4s ease;
  overflow: visible;
}

.main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    #063d2b 0%,
    #08765c 20%,
    #19c98b 40%,
    #32d69d 60%,
    #19c98b 80%,
    #08765c 100%
  );
  background-size: 300% 100%;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* jangan biarkan wrap */
  gap: 20px;
}

.logo-area {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -70px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #172235;
  white-space: nowrap;
  line-height: 1.15;
}

.logo-subtitle {
  margin-top: 2px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #d4a017;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px; /* EDIT: sebelumnya 8px */
}

.nav-menu a,
.nav-menu .dropdown-toggle {
  white-space: nowrap; /* teks menu tidak pecah baris */
  padding: 8px 12px; /* kurangi padding kalau masih kepanjangan */
  font-size: 14px; /* kecilkan sedikit kalau perlu */
}

.nav-menu > a,
.dropdown > .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px; /* EDIT: sebelumnya 10px 16px */
  border-radius: 10px;
  color: #172235;
  font-weight: 600;
  font-size: 0.85rem; /* EDIT: sebelumnya 0.9rem */
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  cursor: pointer;
}

.nav-menu > a i,
.dropdown > .dropdown-toggle i {
  font-size: 0.9rem;
}

.nav-menu > a i.fa-chevron-down,
.dropdown > .dropdown-toggle i.fa-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.nav-menu > a:hover,
.dropdown:hover > .dropdown-toggle,
.nav-menu > a.active {
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 118, 92, 0.3);
  border-color: transparent;
}

.dropdown:hover > .dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN
========================================================= */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: white;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid #edf0f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: all 0.25s ease;
  z-index: 999999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 8px 18px !important;
  color: #172235;
  font-weight: 500;
  font-size: 0.82rem;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9) !important;
  color: #08765c !important;
  padding-left: 24px !important;
}

.dropdown-menu a i {
  width: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #08765c;
}

.dropdown-menu a span strong {
  color: #08765c;
  font-weight: 800;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  margin-right: 4px;
}

.dropdown-menu a span strong.s3 {
  background: #1a472a;
  color: white;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 25px;
  width: 14px;
  height: 14px;
  background: white;
  border-top: 1px solid #edf0f0;
  border-right: 1px solid #edf0f0;
  transform: rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 850px;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 200px 0 130px 0;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroSlideshow 25s infinite;
  transform: scale(1.02);
}

@keyframes heroSlideshow {
  0%,
  16% {
    background-image: url("img/bg1.jpg");
  }
  20%,
  36% {
    background-image: url("img/bg2.jpg");
  }
  40%,
  56% {
    background-image: url("img/bg3.jpg");
  }
  60%,
  76% {
    background-image: url("img/bg4.jpg");
  }
  80%,
  96% {
    background-image: url("img/bg5.jpg");
  }
  100% {
    background-image: url("img/bg1.jpg");
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 27, 42, 0.95) 0%,
    rgba(3, 45, 46, 0.85) 40%,
    rgba(3, 45, 46, 0.6) 70%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  width: min(1400px, 92%);
  margin: auto;
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 30px;
  background: rgba(25, 201, 139, 0.2);
  border: 1px solid rgba(25, 201, 139, 0.4);
  font-size: 0.95rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: #32d69d;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.hero-badge i {
  font-size: 1.1rem;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  font-family: "Poppins", sans-serif;
}

.hero-content h1 .hero-subtitle {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 12px;
  color: #32d69d;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero-content h1 span:not(.hero-subtitle) {
  display: block;
  color: #ffffff;
}

.hero-tagline-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-tagline {
  background: linear-gradient(135deg, #ffc52c, #ffb300);
  color: #1a472a;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.hero-tagline-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

.hero-tagline-sub {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.hero-content h2 {
  max-width: 750px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.3;
  font-weight: 700;
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
}

.hero-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #32d69d, #19c98b);
  margin-top: 12px;
  border-radius: 3px;
}

.hero-slogan {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: #ffc52c !important;
  margin-top: 15px !important;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.hero-slogan i {
  font-size: 1.1rem;
  opacity: 0.6;
  margin: 0 8px;
}

.hero-content p {
  margin-top: 15px;
  max-width: 750px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #13c98b, #0dae76);
  color: white;
  box-shadow: 0 10px 30px rgba(19, 201, 139, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(19, 201, 139, 0.5);
}

.btn-secondary {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: white;
  color: #08765c;
  border-color: white;
}

/* =========================================================
   RESPONSIVE HERO
========================================================= */

@media (max-width: 1100px) {
  .hero {
    padding: 190px 0 110px 0;
    min-height: 780px;
  }
}

@media (max-width: 850px) {
  .hero {
    padding: 180px 0 90px 0;
    min-height: 700px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
    padding: 6px 18px;
  }

  .hero-tagline-sub {
    font-size: 0.8rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-slogan {
    font-size: 1.2rem !important;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 160px 0 60px 0;
    min-height: 580px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h1 .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 6px;
  }

  .hero-tagline-wrapper {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .hero-tagline-divider {
    display: none;
  }

  .hero-slogan {
    font-size: 1.1rem !important;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 150px 0 50px 0;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero-tagline {
    font-size: 0.65rem;
    padding: 4px 12px;
  }

  .hero-tagline-sub {
    font-size: 0.65rem;
  }

  .hero-slogan {
    font-size: 0.95rem !important;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
}

/* =========================================================
   STATISTIK
========================================================= */

.stats-section {
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  padding: 60px 0 50px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid rgba(25, 201, 139, 0.3);
  border-bottom: 4px solid rgba(25, 201, 139, 0.3);
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.stats-title {
  text-align: center;
  margin-bottom: 35px;
}

.stats-title span {
  color: #32d69d;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.stats-title h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 5px;
}

.stats-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #32d69d, #19c98b);
  margin: 8px auto 0;
  border-radius: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  color: white;
  padding: 30px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  backdrop-filter: blur(5px);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(25, 201, 139, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-item:active {
  transform: scale(0.95);
}

.stat-icon {
  font-size: 2.5rem;
  color: #32d69d;
  margin-bottom: 12px;
  transition: all 0.5s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
  color: #ffc52c;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1.1;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
}

.stat-item:hover .stat-number {
  color: #32d69d;
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

/* =========================================================
   RESPONSIVE STATISTIK
========================================================= */

@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 850px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stats-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 40px 0 30px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 16px 10px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .stats-title h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-item {
    padding: 12px 8px;
    border-radius: 12px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-icon {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stats-title h2 {
    font-size: 1.2rem;
  }
}

/* =========================================================
   TENTANG
========================================================= */

.about-section {
  padding: 70px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-tag {
  color: #1a472a;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #172235;
  margin: 10px 0 20px;
  font-weight: 800;
  line-height: 1.2;
}

.about-text p {
  color: #68727d;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #f5f7f8;
  border-radius: 12px;
  border-left: 4px solid #08765c;
}

.feature-item i {
  font-size: 1.8rem;
  color: #08765c;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: #172235;
}

.feature-item p {
  font-size: 0.9rem;
  color: #68727d;
  margin: 0;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(8, 118, 92, 0.3);
}

.about-image {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a472a;
  font-size: 1.2rem;
}

/* =========================================================
   KEUNGGULAN
========================================================= */

.keunggulan-section {
  padding: 70px 0;
  background: #f5f7f8;
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.keunggulan-item {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.keunggulan-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.keunggulan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #08765c;
}

.keunggulan-item h3 {
  color: #172235;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.keunggulan-item p {
  color: #68727d;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================================
   PROGRAM STUDI
========================================================= */

.prodi-section {
  padding: 70px 0;
  background: white;
}

.prodi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.prodi-card {
  background: #f5f7f8;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #edf0f0;
}

.prodi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #08765c;
}

.prodi-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #08765c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.prodi-card h3 {
  color: #172235;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.prodi-card p {
  color: #68727d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.prodi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #08765c;
  font-weight: 600;
  margin-top: 12px;
  transition: 0.3s;
}

.prodi-link:hover {
  gap: 15px;
  color: #063d2b;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  text-align: center;
  margin: 0 auto 45px;
  max-width: 750px;
}

.section-heading > span {
  color: #1a472a;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: 2.5rem;
  color: #172235;
  font-weight: 800;
}

.section-heading p {
  margin-top: 10px;
  color: #68727d;
}

/* =========================================================
   PROFIL DOSEN
========================================================= */

.main-content {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 30px;
  align-items: start;
  max-width: 100%;
  overflow: hidden;
}

.left-column,
.right-column {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.055);
  transition: 0.3s;
  overflow: hidden;
  max-width: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

.profile-card {
  text-align: center;
  padding: 30px 20px;
}

.profile-img {
  width: 145px;
  height: 145px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a472a, #40916c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  border: 6px solid #e8f5e9;
  box-shadow: 0 10px 25px rgba(26, 71, 42, 0.15);
  flex-shrink: 0;
}

.profile-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #172235;
  word-wrap: break-word;
}

.profile-title {
  margin-top: 5px;
  color: #1a472a;
  font-weight: 650;
  word-wrap: break-word;
}

.profile-line {
  height: 1px;
  background: #e8eeee;
  margin: 22px 0 10px;
}

.info-list {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f0;
  font-size: 0.92rem;
  color: #59636d;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-list li i {
  color: #1a472a;
  width: 22px;
  text-align: center;
  margin-top: 4px;
  flex-shrink: 0;
}

.card-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.heading-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e8f5e9;
  color: #1a472a;
  font-size: 1.2rem;
}

.card-heading span {
  color: #1a472a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
}

.card-heading h3 {
  margin-top: 2px;
  color: #172235;
  font-size: 1.35rem;
  word-wrap: break-word;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.skill-tag {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 30px;
  background: #e8f5e9;
  color: #1a472a;
  border: 1px solid #a5d6a7;
  font-size: 0.86rem;
  font-weight: 600;
  word-wrap: break-word;
  max-width: 100%;
}

.timeline {
  position: relative;
  padding-left: 5px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #c8e6c9;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 27px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: 3px;
  border-radius: 50%;
  background: #2d6a4f;
  border: 5px solid #e8f5e9;
}

.timeline-content {
  flex: 1;
  min-width: 0;
}

.timeline-content h4 {
  color: #172235;
  font-size: 1.05rem;
  margin-bottom: 4px;
  word-wrap: break-word;
}

.timeline-content p {
  color: #68727d;
  font-size: 0.9rem;
  word-wrap: break-word;
}

.timeline-content span {
  display: inline-block;
  margin-top: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #e8f5e9;
  color: #1a472a;
  font-size: 0.75rem;
  font-weight: 700;
  word-wrap: break-word;
}

/* =========================================================
   PUBLIKASI
========================================================= */

.publication-section {
  padding: 30px 0 50px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-item {
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  overflow: hidden;
}

.portfolio-item:hover {
  transform: translateY(-7px);
  border-color: #a5d6a7;
}

.publication-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 17px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  color: #1a472a;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.portfolio-item h4 {
  color: #172235;
  font-size: 1.05rem;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.portfolio-item p {
  color: #68727d;
  font-size: 0.88rem;
  word-wrap: break-word;
}

.portfolio-item span {
  display: inline-block;
  margin-top: 10px;
  color: #1a472a;
  font-size: 0.82rem;
  font-weight: 700;
  word-wrap: break-word;
}

/* =========================================================
   GALERI
========================================================= */

.galeri-section {
  padding: 70px 0;
  background: #f5f7f8;
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.galeri-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  padding: 25px;
  text-align: center;
}

.galeri-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.galeri-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #1a472a;
  margin-bottom: 15px;
}

.galeri-item h4 {
  color: #172235;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.galeri-item p {
  color: #68727d;
  font-size: 0.9rem;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: linear-gradient(110deg, #1a472a, #2d6a4f);
  color: white;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #32d69d;
}

.footer-col p {
  opacity: 0.75;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  padding: 6px 0;
  opacity: 0.75;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: white;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #32d69d;
  padding-left: 5px;
}

.footer-col ul li i {
  width: 20px;
  margin-right: 8px;
  color: #32d69d;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* EDIT: breakpoint baru — supaya menu tidak overflow di layar besar (1100–1450px) */
@media (max-width: 1450px) {
  .nav-menu > a,
  .dropdown > .dropdown-toggle {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .nav-menu > a i,
  .dropdown > .dropdown-toggle i {
    font-size: 0.82rem;
  }

  .logo-title {
    font-size: 1.35rem;
  }

  .logo-img {
    height: 46px;
    width: 46px;
  }
}

@media (max-width: 1100px) {
  .main-header {
    padding: 14px 0 12px;
    top: 68px;
  }

  .top-bar {
    height: 68px;
    padding: 0;
  }

  .logo-title {
    font-size: 1.6rem;
  }

  .nav-menu > a,
  .dropdown > .dropdown-toggle {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prodi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 150px 0 50px 0;
  }
}

@media (max-width: 850px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo-area {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-menu {
    justify-content: center;
    width: 100%;
    gap: 4px;
  }

  .nav-menu > a,
  .dropdown > .dropdown-toggle {
    padding: 6px 10px;
    font-size: 0.7rem;
    border-radius: 8px;
  }

  .main-header {
    padding: 12px 0 10px;
    top: 60px;
  }

  .top-bar {
    height: 60px;
    padding: 0;
  }

  .top-social a {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .register-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 140px 0 40px 0;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 10px 0 8px;
    top: 50px;
  }

  .top-bar {
    height: 50px;
    padding: 0;
  }

  .logo-title {
    font-size: 1.3rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .logo-img {
    height: 44px;
    width: 44px;
  }

  .nav-menu > a,
  .dropdown > .dropdown-toggle {
    padding: 4px 7px;
    font-size: 0.6rem;
    border-radius: 6px;
    gap: 3px;
  }

  .nav-menu > a i,
  .dropdown > .dropdown-toggle i {
    font-size: 0.55rem;
  }

  .dropdown-menu {
    min-width: 160px;
    right: -5px;
  }

  .dropdown-menu a {
    font-size: 0.65rem !important;
    padding: 5px 12px !important;
  }

  .top-social {
    gap: 6px;
  }

  .top-social a {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .register-btn {
    padding: 5px 12px;
    font-size: 0.6rem;
    gap: 4px;
  }

  .register-btn i {
    font-size: 0.7rem;
  }

  .main-header::after {
    height: 3px;
  }

  .hero {
    padding: 120px 0 30px 0;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .hero-slogan {
    font-size: 1rem !important;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .prodi-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .galeri-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .main-content {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px 15px;
  }
}

@media (max-width: 420px) {
  .top-social {
    gap: 4px;
  }

  .top-social a {
    width: 26px;
    height: 26px;
    font-size: 0.6rem;
  }

  .register-btn {
    font-size: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
  }

  .register-btn i {
    font-size: 0.8rem;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    font-size: 0.45rem;
    letter-spacing: 1px;
  }

  .logo-img {
    height: 38px;
    width: 38px;
  }

  .nav-menu > a,
  .dropdown > .dropdown-toggle {
    padding: 3px 5px;
    font-size: 0.5rem;
    border-radius: 4px;
  }

  .main-header {
    padding: 6px 0 4px;
    top: 42px;
  }

  .top-bar {
    height: 42px;
    padding: 0;
  }

  .main-header::after {
    height: 2px;
  }

  .hero {
    padding: 110px 0 20px 0;
    min-height: 380px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 0.6rem;
    padding: 5px 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .dropdown-menu {
    min-width: 140px;
    right: -10px;
  }

  .dropdown-menu a {
    font-size: 0.55rem !important;
    padding: 4px 10px !important;
  }

  .dropdown-menu a span strong {
    font-size: 0.5rem;
    padding: 1px 4px;
  }
}

/* =========================================================
   ANIMASI HOVER & KLIK - INTERAKTIF
========================================================= */

/* ====== 1. ANIMASI KARTU KEUNGGULAN ====== */
.keunggulan-item {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.keunggulan-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(8, 118, 92, 0.15);
}

.keunggulan-item:active {
  transform: scale(0.95);
  transition-duration: 0.1s;
}

.keunggulan-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #063d2b, #08765c, #19c98b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.keunggulan-item:hover::after {
  transform: scaleX(1);
}

.keunggulan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #08765c;
  transition: all 0.5s ease;
}

.keunggulan-item:hover .keunggulan-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(8, 118, 92, 0.3);
}

/* ====== 2. ANIMASI TOMBOL ====== */
.btn-primary::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn-primary:active::after,
.btn-secondary:active::after {
  width: 300%;
  height: 300%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(19, 201, 139, 0.45);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.03);
  background: white;
  color: #08765c;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* ====== 3. ANIMASI KARTU PRODI ====== */
.prodi-card {
  background: #f5f7f8;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #edf0f0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prodi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #08765c;
}

.prodi-card:active {
  transform: scale(0.96);
  transition-duration: 0.1s;
}

.prodi-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #08765c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.5s ease;
}

.prodi-card:hover .prodi-icon {
  animation: pulse 1s ease infinite;
  box-shadow: 0 0 0 10px rgba(8, 118, 92, 0.15);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.prodi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #08765c;
  font-weight: 600;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.prodi-card:hover .prodi-link {
  gap: 15px;
  color: #063d2b;
}

.prodi-link i {
  transition: transform 0.3s ease;
}

.prodi-card:hover .prodi-link i {
  transform: translateX(5px);
}

/* ====== 4. ANIMASI STATISTIK ====== */
.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  color: #ffffff;
}

/* ====== 5. ANIMASI PUBLIKASI ====== */
.portfolio-item {
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #a5d6a7;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.portfolio-item:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.publication-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 17px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  color: #1a472a;
  font-size: 1.7rem;
  transition: all 0.5s ease;
}

.portfolio-item:hover .publication-icon {
  background: linear-gradient(135deg, #1a472a, #08765c);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

/* ====== 6. ANIMASI GALERI ====== */
.galeri-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 25px;
  text-align: center;
  cursor: pointer;
}

.galeri-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.galeri-item:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.galeri-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #1a472a;
  margin-bottom: 15px;
  transition: all 0.5s ease;
}

.galeri-item:hover .galeri-placeholder {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  transform: scale(1.03);
}

/* ====== 7. ANIMASI CARD PROFIL ====== */
.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.055);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  max-width: 100%;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card:active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}

.profile-img {
  width: 145px;
  height: 145px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a472a, #40916c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  border: 6px solid #e8f5e9;
  box-shadow: 0 10px 25px rgba(26, 71, 42, 0.15);
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.profile-card:hover .profile-img {
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(26, 71, 42, 0.25);
}

/* ====== 8. ANIMASI SKILL TAGS ====== */
.skill-tag {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 30px;
  background: #e8f5e9;
  color: #1a472a;
  border: 1px solid #a5d6a7;
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.skill-tag:hover {
  background: #08765c;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(8, 118, 92, 0.3);
}

/* ====== 9. ANIMASI TIMELINE ====== */
.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 27px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: 3px;
  border-radius: 50%;
  background: #2d6a4f;
  border: 5px solid #e8f5e9;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
  background: #19c98b;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(25, 201, 139, 0.4);
}

/* ====== 10. ANIMASI DROPDOWN ====== */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: white;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid #edf0f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 999999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 8px 18px !important;
  color: #172235;
  font-weight: 500;
  font-size: 0.82rem;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9) !important;
  color: #08765c !important;
  padding-left: 24px !important;
}

.dropdown-menu a:active {
  transform: scale(0.97);
}

/* ====== 11. ANIMASI NAVIGASI ====== */
.nav-menu > a,
.dropdown > .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #172235;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-menu > a::after,
.dropdown > .dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu > a:hover::after,
.dropdown:hover > .dropdown-toggle::after,
.nav-menu > a.active::after {
  width: 70%;
}

.nav-menu > a:hover,
.dropdown:hover > .dropdown-toggle,
.nav-menu > a.active {
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 118, 92, 0.3);
  border-color: transparent;
}

/* =========================================================
   SCROLL ANIMATION - FADE IN
========================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.keunggulan-item,
.prodi-card,
.portfolio-item,
.galeri-item,
.stat-item {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.keunggulan-item:nth-child(1) {
  animation-delay: 0.1s;
}
.keunggulan-item:nth-child(2) {
  animation-delay: 0.2s;
}
.keunggulan-item:nth-child(3) {
  animation-delay: 0.3s;
}

.prodi-card:nth-child(1) {
  animation-delay: 0.1s;
}
.prodi-card:nth-child(2) {
  animation-delay: 0.2s;
}
.prodi-card:nth-child(3) {
  animation-delay: 0.3s;
}
.prodi-card:nth-child(4) {
  animation-delay: 0.4s;
}

.portfolio-item:nth-child(1) {
  animation-delay: 0.1s;
}
.portfolio-item:nth-child(2) {
  animation-delay: 0.15s;
}
.portfolio-item:nth-child(3) {
  animation-delay: 0.2s;
}
.portfolio-item:nth-child(4) {
  animation-delay: 0.25s;
}
.portfolio-item:nth-child(5) {
  animation-delay: 0.3s;
}
.portfolio-item:nth-child(6) {
  animation-delay: 0.35s;
}

.galeri-item:nth-child(1) {
  animation-delay: 0.1s;
}
.galeri-item:nth-child(2) {
  animation-delay: 0.2s;
}
.galeri-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(1) {
  animation-delay: 0.05s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.1s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.15s;
}
.stat-item:nth-child(4) {
  animation-delay: 0.2s;
}
.stat-item:nth-child(5) {
  animation-delay: 0.25s;
}

/* =========================================================
   HALAMAN BERITA - FIX TOTAL (SINGLE BLOCK)
========================================================= */

.berita-header {
  background: #ffffff;
  padding: 200px 0 20px 0;
  margin-top: 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.berita-header-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #172235;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  letter-spacing: -2px;
}

.berita-header-content h1.highlight {
  color: #08765c;
  font-size: 3.2rem;
  margin-top: -3px;
}

.berita-header-content .header-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 10px auto;
  border-radius: 2px;
}

.berita-header-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #172235;
  font-family: "Poppins", sans-serif;
  margin-top: 5px;
}

.berita-header-content p {
  font-size: 0.95rem;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  max-width: 700px;
  margin: 5px auto 0;
  line-height: 1.6;
}

.berita-section {
  padding: 30px 0 50px 0;
  background: #f5f7f8;
}

.berita-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.berita-utama {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.berita-utama .berita-image {
  height: 220px;
  background: linear-gradient(135deg, #1a472a, #40916c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  position: relative;
}

.berita-utama .berita-image .overlay-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffc52c;
  color: #1a472a;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.berita-utama .berita-body {
  padding: 20px 25px 25px;
}

.berita-utama .berita-body .berita-tag {
  display: inline-block;
  background: #08765c;
  color: white;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.berita-utama .berita-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 8px;
  line-height: 1.3;
}

.berita-utama .berita-body p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.berita-utama .berita-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #68727d;
  padding-top: 12px;
  border-top: 1px solid #edf0f0;
}

.berita-utama .berita-meta i {
  margin-right: 4px;
  color: #08765c;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #08765c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card .card-title i {
  color: #08765c;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  color: #172235;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar-card ul li a:hover {
  color: #08765c;
  padding-left: 5px;
}

.sidebar-card ul li a i {
  color: #08765c;
  width: 18px;
  font-size: 0.75rem;
}

.sidebar-card ul li .badge-count {
  background: #08765c;
  color: white;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  margin-left: auto;
}

.sidebar-card ul li .badge-hot {
  background: #ff6b6b;
  color: white;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  margin-left: auto;
}

.berita-kecil {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.berita-kecil:last-child {
  border-bottom: none;
}

.berita-kecil .thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #1a472a;
}

.berita-kecil .info {
  flex: 1;
}

.berita-kecil .info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #172235;
  margin-bottom: 2px;
  line-height: 1.3;
}

.berita-kecil .info .date {
  font-size: 0.7rem;
  color: #68727d;
}

/* =========================================================
   RESPONSIVE BERITA
========================================================= */

@media (max-width: 1100px) {
  .berita-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .berita-header {
    padding: 180px 0 15px 0;
  }

  .berita-header-content h1 {
    font-size: 2.2rem;
  }

  .berita-header-content h1.highlight {
    font-size: 2.5rem;
  }

  .berita-header-content h2 {
    font-size: 1.1rem;
  }

  .berita-header-content p {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .berita-utama .berita-image {
    height: 160px;
    font-size: 3rem;
  }

  .berita-utama .berita-body {
    padding: 15px 18px 18px;
  }

  .berita-utama .berita-body h3 {
    font-size: 1.1rem;
  }

  .berita-utama .berita-body p {
    font-size: 0.85rem;
  }

  .berita-utama .berita-meta {
    gap: 10px;
    font-size: 0.7rem;
  }

  .sidebar-card {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .berita-header {
    padding: 5px 0 12px 0;
  }

  .berita-header-content h1 {
    font-size: 1.8rem;
  }

  .berita-header-content h1.highlight {
    font-size: 2rem;
  }

  .berita-header-content h2 {
    font-size: 0.95rem;
  }

  .berita-header-content p {
    font-size: 0.8rem;
  }

  .berita-header-content .header-line {
    width: 50px;
    height: 3px;
    margin: 8px auto;
  }

  .berita-utama .berita-image {
    height: 130px;
    font-size: 2.5rem;
  }

  .berita-utama .berita-body {
    padding: 12px 15px 15px;
  }

  .berita-utama .berita-body h3 {
    font-size: 1rem;
  }

  .berita-utama .berita-body p {
    font-size: 0.8rem;
  }

  .berita-utama .berita-meta {
    flex-direction: column;
    gap: 3px;
    font-size: 0.7rem;
  }

  .sidebar-card {
    padding: 12px;
  }

  .berita-kecil .thumb {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .berita-kecil .info h5 {
    font-size: 0.75rem;
  }

  .berita-kecil .info .date {
    font-size: 0.65rem;
  }
}
/* =========================================================
   BERITA HEADER (baru)
========================================================= */

.berita-header {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  margin-top: 0;
  text-align: center;
  position: relative;
}

.berita-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #063d2b,
    #08765c,
    #19c98b,
    #08765c,
    #063d2b
  );
}

.berita-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}

.berita-header-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.berita-header-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.berita-header-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.berita-header-content p {
  font-size: 1rem;
  color: #68727d;
  font-family: "Poppins", sans-serif;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* =========================================================
   BERITA GRID (baru)
========================================================= */

.berita-section {
  padding: 50px 0 80px 0;
  background: #f5f7f8;
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.berita-card {
  display: block;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: inherit;
}

.berita-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.15);
  border-color: #a5d6a7;
}

.berita-card-image {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.berita-card-image i {
  transition: transform 0.5s ease;
}

.berita-card:hover .berita-card-image i {
  transform: scale(1.15) rotate(-5deg);
}

.berita-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #08765c;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Variasi warna tiap kategori (placeholder sebelum foto tersedia) */
.bg-beasiswa {
  background: linear-gradient(135deg, #d4a017, #ffc52c);
}
.bg-muhadarah {
  background: linear-gradient(135deg, #063d2b, #0c9d89);
}
.bg-munaqosah {
  background: linear-gradient(135deg, #1a472a, #40916c);
}
.bg-orientasi {
  background: linear-gradient(135deg, #08765c, #19c98b);
}
.bg-research {
  background: linear-gradient(135deg, #2d6a4f, #52b788);
}
.bg-sosialisasi {
  background: linear-gradient(135deg, #063d2b, #1a472a);
}
.bg-uas {
  background: linear-gradient(135deg, #40916c, #08765c);
}
.bg-workshop {
  background: linear-gradient(135deg, #1a9e7a, #0dae76);
}
.bg-yudisium {
  background: linear-gradient(135deg, #08765c, #063d2b);
}

.berita-card-body {
  padding: 20px 22px 24px;
}

.berita-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #08765c;
  font-weight: 600;
  margin-bottom: 10px;
}

.berita-card-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #172235;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.berita-card:hover .berita-card-body h3 {
  color: #08765c;
}

.berita-card-body p {
  font-size: 0.88rem;
  color: #68727d;
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE BERITA GRID
========================================================= */

@media (max-width: 1100px) {
  .berita-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .berita-header {
    padding: 180px 0 40px 0;
  }
  .berita-header-content h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .berita-header {
    padding: 160px 0 35px 0;
  }
  .berita-header-content h1 {
    font-size: 1.7rem;
  }
  .berita-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   SEJARAH - INTRO SECTION
========================================================= */

.sejarah-intro-section {
  padding: 60px 0 70px 0;
  background: white;
}

.sejarah-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.sejarah-intro-image {
  height: 380px;
  border-radius: 20px;
  background: linear-gradient(135deg, #063d2b, #08765c, #19c98b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(8, 118, 92, 0.2);
}

.sejarah-eyebrow {
  color: #1a472a;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.sejarah-intro-text h2 {
  font-size: 2rem;
  color: #172235;
  margin: 10px 0 18px;
  font-weight: 800;
  line-height: 1.25;
}

.sejarah-intro-text p {
  color: #68727d;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.sejarah-intro-text p:last-child {
  margin-bottom: 0;
}

.sejarah-intro-text strong {
  color: #08765c;
}

/* =========================================================
   SEJARAH - TIMELINE SECTION
========================================================= */

.sejarah-timeline-section {
  padding: 70px 0 80px 0;
  background: #f5f7f8;
}

.sejarah-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 10px;
}

.sejarah-timeline::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(180deg, #08765c, #c8e6c9);
  border-radius: 3px;
}

.sejarah-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 34px 1fr;
  align-items: start;
  gap: 20px;
  margin-bottom: 34px;
}

.sejarah-timeline-item:last-child {
  margin-bottom: 0;
}

.sejarah-timeline-year {
  text-align: right;
  font-weight: 800;
  color: #08765c;
  font-size: 1rem;
  padding-top: 12px;
  white-space: nowrap;
}

.sejarah-timeline-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 4px solid #08765c;
  position: relative;
  z-index: 2;
  margin-top: 4px;
  transition: all 0.4s ease;
}

.sejarah-timeline-dot.highlight-dot {
  background: #08765c;
  box-shadow: 0 0 0 6px rgba(8, 118, 92, 0.15);
}

.sejarah-timeline-item:hover .sejarah-timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(8, 118, 92, 0.15);
}

.sejarah-timeline-content {
  background: white;
  border-radius: 16px;
  padding: 22px 26px;
  border: 1px solid #edf0f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.sejarah-timeline-item:hover .sejarah-timeline-content {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(8, 118, 92, 0.12);
  border-color: #a5d6a7;
}

.sejarah-timeline-content h3 {
  font-size: 1.08rem;
  color: #172235;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sejarah-timeline-content h3 i {
  color: #08765c;
  font-size: 0.95rem;
}

.sejarah-timeline-content p {
  color: #68727d;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =========================================================
   SEJARAH - VISI SECTION
========================================================= */

.sejarah-visi-section {
  padding: 0 0 80px 0;
  background: #f5f7f8;
}

.sejarah-visi-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  border-radius: 24px;
  padding: 55px 50px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(8, 118, 92, 0.25);
}

.sejarah-visi-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 45%
    );
  pointer-events: none;
}

.sejarah-visi-icon {
  font-size: 1.8rem;
  color: #32d69d;
  opacity: 0.8;
  margin-bottom: 15px;
}

.sejarah-visi-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.sejarah-visi-label {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #32d69d;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.sejarah-visi-divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  margin: 25px auto;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.sejarah-visi-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.sejarah-visi-desc strong {
  color: #ffc52c;
}

/* =========================================================
   RESPONSIVE SEJARAH
========================================================= */

@media (max-width: 1100px) {
  .sejarah-intro-grid {
    grid-template-columns: 1fr;
  }
  .sejarah-intro-image {
    height: 280px;
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .sejarah-timeline::before {
    left: 24px;
  }
  .sejarah-timeline-item {
    grid-template-columns: 34px 1fr;
  }
  .sejarah-timeline-year {
    grid-column: 1 / -1;
    text-align: left;
    padding-top: 0;
    padding-bottom: 6px;
  }
  .sejarah-timeline-dot {
    grid-row: 2;
  }
  .sejarah-timeline-content {
    grid-row: 2;
    padding: 18px 20px;
  }
  .sejarah-visi-box {
    padding: 40px 25px;
  }
  .sejarah-visi-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .sejarah-intro-image {
    height: 220px;
    font-size: 3.5rem;
  }
  .sejarah-intro-text h2 {
    font-size: 1.5rem;
  }
}
/* =========================================================
   PROGRAM STUDI PASCASARJANA - QUICK LIST
========================================================= */

.prodi-quick-section {
  padding: 0 0 70px 0;
  background: white;
}

.prodi-quick-box {
  background: #f5f7f8;
  border: 1px solid #edf0f0;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.prodi-quick-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #172235;
  flex-shrink: 0;
}

.prodi-quick-label i {
  color: #08765c;
  font-size: 1.1rem;
}

.prodi-quick-list {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex: 1;
}

.prodi-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid #edf0f0;
  border-radius: 30px;
  padding: 10px 20px 10px 10px;
  transition: all 0.3s ease;
  color: inherit;
}

.prodi-quick-item:hover {
  transform: translateY(-3px);
  border-color: #08765c;
  box-shadow: 0 10px 25px rgba(8, 118, 92, 0.12);
}

.prodi-quick-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e8f5e9;
  color: #08765c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.prodi-quick-item:hover .prodi-quick-icon {
  background: #08765c;
  color: white;
}

.prodi-quick-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  background: #08765c;
  padding: 3px 9px;
  border-radius: 5px;
  flex-shrink: 0;
}

.prodi-quick-badge.s3 {
  background: #1a472a;
}

.prodi-quick-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #172235;
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVE PRODI QUICK LIST
========================================================= */

@media (max-width: 850px) {
  .prodi-quick-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 22px;
  }

  .prodi-quick-list {
    width: 100%;
  }

  .prodi-quick-item {
    width: 100%;
  }

  .prodi-quick-name {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .prodi-quick-box {
    border-radius: 16px;
    padding: 20px 16px;
  }

  .prodi-quick-item {
    padding: 8px 16px 8px 8px;
  }

  .prodi-quick-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .prodi-quick-name {
    font-size: 0.82rem;
  }
}
/* =========================================================
   VISI MISI TUJUAN - VISI
========================================================= */

.vmt-visi-section {
  padding: 60px 0 20px 0;
  background: white;
}

.vmt-visi-box {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  border-radius: 24px;
  padding: 60px 55px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(8, 118, 92, 0.22);
}

.vmt-visi-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 88% 85%,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 45%
    );
  pointer-events: none;
}

.vmt-visi-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.vmt-visi-text {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.55;
  color: white;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================================
   VISI MISI TUJUAN - MISI
========================================================= */

.vmt-misi-section {
  padding: 70px 0 80px 0;
  background: white;
}

.section-heading > span i {
  margin-right: 6px;
}

.vmt-misi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vmt-misi-card {
  background: #f5f7f8;
  border: 1px solid #edf0f0;
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.vmt-misi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.13);
  border-color: #a5d6a7;
  background: white;
}

.vmt-misi-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #e8f5e9;
  line-height: 1;
  transition: color 0.4s ease;
}

.vmt-misi-card:hover .vmt-misi-num {
  color: #c8e6c9;
}

.vmt-misi-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #e8f5e9;
  color: #08765c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.vmt-misi-card:hover .vmt-misi-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  transform: rotate(-6deg) scale(1.08);
}

.vmt-misi-card h3 {
  font-size: 1.08rem;
  color: #172235;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.vmt-misi-card p {
  font-size: 0.9rem;
  color: #68727d;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* =========================================================
   VISI MISI TUJUAN - TUJUAN
========================================================= */

.vmt-tujuan-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  position: relative;
  overflow: hidden;
}

.vmt-tujuan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 30%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-heading.light > span {
  color: #32d69d;
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light h2::after {
  margin: 8px auto 0;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.75);
}

.vmt-tujuan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.vmt-tujuan-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(5px);
  transition: all 0.35s ease;
}

.vmt-tujuan-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(50, 214, 157, 0.4);
  transform: translateY(-4px);
}

.vmt-tujuan-item i {
  color: #32d69d;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.vmt-tujuan-item p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   RESPONSIVE VISI MISI TUJUAN
========================================================= */

@media (max-width: 1100px) {
  .vmt-misi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vmt-visi-box {
    padding: 40px 28px;
  }
  .vmt-visi-text {
    font-size: 1.2rem;
  }
  .vmt-tujuan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vmt-misi-grid {
    grid-template-columns: 1fr;
  }
  .vmt-misi-card {
    padding: 28px 22px;
  }
}
.civitas-gambar-section {
  padding: 60px 0;
}
.civitas-gambar-wrapper {
  text-align: center;
}
.civitas-gambar {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
/* =========================================================
   STRUKTUR ORGANISASI - KARTU PIMPINAN
   (tempel di bawah blok VISI MISI TUJUAN pada style.css)
========================================================= */

.pimpinan-section {
  padding: 20px 0 80px 0;
  background: #f5f7f8;
}

.pimpinan-card {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  background: white;
  border: 1px solid #edf0f0;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pimpinan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.13);
  border-color: #a5d6a7;
}

.pimpinan-card-foto {
  flex: 0 0 250px;
  max-width: 250px;
}

.pimpinan-card-foto img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  box-shadow: 0 10px 25px rgba(26, 71, 42, 0.15);
}

.pimpinan-card-info {
  flex: 1;
  min-width: 260px;
}

.pimpinan-jabatan {
  display: inline-block;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(8, 118, 92, 0.25);
}

.pimpinan-card-info h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #172235;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

.pimpinan-card-info > p {
  color: #68727d;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.pimpinan-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pimpinan-detail-box {
  background: #f5f7f8;
  border: 1px solid #edf0f0;
  border-radius: 12px;
  padding: 12px 20px;
  flex: 1;
  min-width: 180px;
  transition: all 0.3s ease;
}

.pimpinan-detail-box:hover {
  background: #e8f5e9;
  border-color: #a5d6a7;
}

.pimpinan-detail-box span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #08765c;
  margin-bottom: 4px;
}

.pimpinan-detail-box strong {
  font-size: 0.92rem;
  color: #172235;
  font-weight: 700;
  word-break: break-word;
}

/* =========================================================
   RESPONSIVE PIMPINAN
========================================================= */

@media (max-width: 768px) {
  .pimpinan-card {
    flex-direction: column;
    padding: 24px;
  }
  .pimpinan-card-foto {
    max-width: 100%;
  }
  .pimpinan-card-foto img {
    height: 260px;
  }
}
/* =========================================================
   STRUKTURAL - GAMBAR
========================================================= */

.struktural-gambar-section {
  padding: 60px 0 80px 0;
  background: #f5f7f8;
}

.struktural-gambar-wrapper {
  text-align: center;
  background: white;
  border: 1px solid #edf0f0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.struktural-gambar {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 600px) {
  .struktural-gambar-wrapper {
    padding: 16px;
    border-radius: 14px;
  }
}
/* =========================================================
   SUBMENU FLYOUT - PENDIDIKAN AGAMA ISLAM
========================================================= */

.has-submenu {
  position: relative;
}

.has-submenu > a {
  justify-content: space-between;
}

.has-submenu > a .submenu-arrow {
  margin-left: auto;
  font-size: 0.6rem !important;
  color: #08765c;
  transition: transform 0.3s ease;
}

.has-submenu:hover > a .submenu-arrow {
  transform: rotate(180deg);
}

.has-submenu:hover > a {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9) !important;
  color: #08765c !important;
}

.submenu {
  position: absolute;
  top: -8px;
  right: calc(100% + 10px);
  min-width: 240px;
  background: white;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid #edf0f0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 999999;
}

.has-submenu:not(.accordion):hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.submenu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 8px 18px !important;
  color: #172235;
  font-weight: 500;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.submenu a:hover {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9) !important;
  color: #08765c !important;
  padding-left: 24px !important;
}

.submenu a i {
  width: 18px;
  text-align: center;
  font-size: 0.78rem;
  color: #08765c;
}

/* Panah dekoratif kecil di sisi kanan submenu */
.submenu::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -7px;
  width: 14px;
  height: 14px;
  background: white;
  border-top: 1px solid #edf0f0;
  border-right: 1px solid #edf0f0;
  transform: rotate(45deg);
}

/* =========================================================
   RESPONSIVE SUBMENU (di layar kecil, buka ke bawah bukan ke samping)
========================================================= */

@media (max-width: 1100px) {
  .submenu {
    position: static;
    top: auto;
    right: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid #08765c;
    border-radius: 0;
    margin: 4px 0 4px 20px;
    min-width: 0;
    width: calc(100% - 20px);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-submenu:not(.accordion):hover > .submenu {
    display: block;
  }

  .submenu::before {
    display: none;
  }
}
/* =========================================================
   FASILITAS - HERO HIGHLIGHT (span di dalam h1)
   Catatan: .berita-header, .berita-header-badge, .header-line
   sudah tersedia di style.css utama, tinggal tambahkan span highlight
========================================================= */

.berita-header-content h1 .highlight {
  color: #08765c;
}

/* =========================================================
   FASILITAS - GRID FASILITAS UNGGULAN
========================================================= */

.fasilitas-section {
  padding: 60px 0 20px 0;
  background: white;
}

.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.fasilitas-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fasilitas-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.15);
  border-color: #a5d6a7;
}

.fasilitas-card-img {
  height: 190px;
  overflow: hidden;
}

.fasilitas-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fasilitas-card:hover .fasilitas-card-img img {
  transform: scale(1.08);
}

.fasilitas-card-body {
  padding: 22px 22px 26px;
}

.fasilitas-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fasilitas-emoji {
  font-size: 1.2rem;
}

.fasilitas-card-body p {
  font-size: 0.9rem;
  color: #68727d;
  line-height: 1.7;
}

/* =========================================================
   FASILITAS - STATS GRID VARIANT (4 kolom)
========================================================= */

.stats-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* =========================================================
   FASILITAS - VIRTUAL TOUR CTA
========================================================= */

.virtualtour-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  position: relative;
  overflow: hidden;
}

.virtualtour-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.virtualtour-wrapper {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.virtualtour-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.virtualtour-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 18px;
}

.virtualtour-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.virtualtour-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #08765c;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.virtualtour-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   RESPONSIVE FASILITAS
========================================================= */

@media (max-width: 1100px) {
  .fasilitas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .virtualtour-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .berita-header {
    padding: 180px 0 40px 0;
  }
  .fasilitas-section {
    padding: 40px 0 10px 0;
  }
  .virtualtour-section {
    padding: 60px 0;
  }
  .virtualtour-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .fasilitas-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
/* =========================================================
   PROGRAM STUDI PAI - STYLING LENGKAP
========================================================= */

/* ----- HERO / HEADER ----- */
.prodi-hero {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.prodi-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.prodi-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.prodi-hero-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.prodi-hero-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.prodi-hero-content p {
  font-size: 1rem;
  color: #68727d;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* ----- STATISTIK ----- */
.prodi-stats {
  padding: 40px 0 50px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  border-top: 4px solid rgba(25, 201, 139, 0.3);
  border-bottom: 4px solid rgba(25, 201, 139, 0.3);
}

.prodi-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.prodi-stat-item {
  color: white;
  padding: 30px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.prodi-stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(25, 201, 139, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.prodi-stat-icon {
  font-size: 2.5rem;
  color: #32d69d;
  margin-bottom: 12px;
}

.prodi-stat-item:hover .prodi-stat-icon {
  transform: scale(1.2);
  color: #ffc52c;
}

.prodi-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
  color: #ffffff;
}

.prodi-stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ----- VISI ----- */
.prodi-visi-section {
  padding: 70px 0 60px 0;
  background: white;
}

.prodi-visi-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #f5f7f8, #e8f5e9);
  border-radius: 24px;
  padding: 50px 45px;
  border: 1px solid #a5d6a7;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.prodi-visi-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: #08765c;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.prodi-visi-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
  margin-bottom: 15px;
}

.visi-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.visi-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #08765c;
  line-height: 1.5;
}

/* ----- MISI ----- */
.prodi-misi-section {
  padding: 70px 0 80px 0;
  background: #f5f7f8;
}

.prodi-misi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.prodi-misi-card {
  background: white;
  border-radius: 18px;
  padding: 30px 25px;
  border: 1px solid #edf0f0;
  text-align: center;
  transition: all 0.4s ease;
}

.prodi-misi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.12);
  border-color: #a5d6a7;
}

.prodi-misi-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #08765c;
  transition: all 0.4s ease;
}

.prodi-misi-card:hover .prodi-misi-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  transform: rotateY(180deg);
}

.prodi-misi-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 10px;
}

.prodi-misi-card p {
  font-size: 0.9rem;
  color: #68727d;
  line-height: 1.7;
}

/* ----- TUJUAN ----- */
.prodi-tujuan-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.prodi-tujuan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.prodi-tujuan-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 22px 24px;
  transition: all 0.35s ease;
}

.prodi-tujuan-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(50, 214, 157, 0.4);
  transform: translateY(-4px);
}

.prodi-tujuan-item i {
  color: #32d69d;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.prodi-tujuan-item p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.prodi-tujuan-item p strong {
  color: #ffc52c;
}

/* ----- PIMPINAN ----- */
.prodi-pimpinan-section {
  padding: 70px 0 80px 0;
  background: #f5f7f8;
}

.prodi-pimpinan-card {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  background: white;
  border: 1px solid #edf0f0;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.prodi-pimpinan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.13);
  border-color: #a5d6a7;
}

.prodi-pimpinan-foto {
  flex: 0 0 200px;
  max-width: 200px;
}

.prodi-pimpinan-foto img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  box-shadow: 0 10px 25px rgba(26, 71, 42, 0.15);
}

.prodi-pimpinan-info {
  flex: 1;
  min-width: 260px;
}

.prodi-pimpinan-jabatan {
  display: inline-block;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(8, 118, 92, 0.25);
}

.prodi-pimpinan-jabatan.sekretaris {
  background: linear-gradient(135deg, #1a472a, #2d6a4f);
}

.prodi-pimpinan-info h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #172235;
  margin-bottom: 14px;
}

.prodi-pimpinan-info > p {
  color: #68727d;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.prodi-pimpinan-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-item {
  background: #f5f7f8;
  border: 1px solid #edf0f0;
  border-radius: 12px;
  padding: 12px 20px;
  flex: 1;
  min-width: 160px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #e8f5e9;
  border-color: #a5d6a7;
}

.detail-item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #08765c;
  margin-bottom: 4px;
}

.detail-item strong {
  font-size: 0.88rem;
  color: #172235;
  font-weight: 700;
  word-break: break-word;
}

/* ----- KURIKULUM ----- */
.prodi-kurikulum-section {
  padding: 70px 0 80px 0;
  background: white;
}

.prodi-kurikulum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.kurikulum-card {
  background: #f5f7f8;
  border-radius: 18px;
  padding: 30px 25px;
  border: 1px solid #edf0f0;
  text-align: center;
  transition: all 0.4s ease;
}

.kurikulum-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.12);
  border-color: #a5d6a7;
  background: white;
}

.kurikulum-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #08765c;
  transition: all 0.4s ease;
}

.kurikulum-card:hover .kurikulum-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
}

.kurikulum-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 12px;
}

.kurikulum-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.kurikulum-card ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: #68727d;
  border-bottom: 1px solid #edf0f0;
  position: relative;
  padding-left: 20px;
}

.kurikulum-card ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #08765c;
  font-weight: 700;
}

.kurikulum-card ul li:last-child {
  border-bottom: none;
}

/* ----- CTA ----- */
.prodi-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.prodi-cta-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.prodi-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.prodi-cta-box h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.prodi-cta-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #08765c;
  padding: 16px 45px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   RESPONSIVE PROGRAM STUDI PAI
========================================================= */

@media (max-width: 1100px) {
  .prodi-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prodi-misi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prodi-tujuan-grid {
    grid-template-columns: 1fr;
  }
  .prodi-kurikulum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .prodi-hero {
    padding: 180px 0 40px 0;
  }
  .prodi-hero-content h1 {
    font-size: 2.1rem;
  }
  .visi-text {
    font-size: 1.1rem;
  }
  .prodi-pimpinan-foto {
    flex: 0 0 150px;
    max-width: 150px;
  }
  .prodi-pimpinan-foto img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .prodi-pimpinan-card {
    flex-direction: column;
    padding: 24px;
  }
  .prodi-pimpinan-foto {
    max-width: 100%;
  }
  .prodi-pimpinan-foto img {
    height: 240px;
  }
  .prodi-cta-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .prodi-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .prodi-stat-number {
    font-size: 2rem;
  }
  .prodi-misi-grid {
    grid-template-columns: 1fr;
  }
  .prodi-kurikulum-grid {
    grid-template-columns: 1fr;
  }
  .prodi-hero-content h1 {
    font-size: 1.7rem;
  }
  .prodi-visi-box {
    padding: 30px 20px;
  }
  .prodi-visi-box h2 {
    font-size: 1.4rem;
  }
  .visi-text {
    font-size: 1rem;
  }
  .prodi-pimpinan-detail {
    flex-direction: column;
  }
  .prodi-cta-box h2 {
    font-size: 1.4rem;
  }
  .btn-cta {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .prodi-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .prodi-stat-item {
    padding: 16px 10px;
  }
  .prodi-stat-number {
    font-size: 1.5rem;
  }
  .prodi-stat-label {
    font-size: 0.75rem;
  }
  .prodi-stat-icon {
    font-size: 1.8rem;
  }
}
/* =========================================================
   PROFIL LULUSAN PAI - STYLING LENGKAP
========================================================= */

/* ----- HERO ----- */
.profil-hero {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.profil-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.profil-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.profil-hero-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.profil-hero-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.profil-hero-content p {
  font-size: 1rem;
  color: #68727d;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* ----- SEJARAH SINGKAT ----- */
.profil-sejarah-section {
  padding: 70px 0 60px 0;
  background: white;
}

.profil-sejarah-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5f7f8, #e8f5e9);
  border-radius: 24px;
  padding: 45px 50px;
  border: 1px solid #a5d6a7;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.profil-sejarah-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08765c, #19c98b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(8, 118, 92, 0.25);
}

.profil-sejarah-content {
  flex: 1;
}

.sejarah-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #08765c;
  margin-bottom: 6px;
}

.profil-sejarah-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #172235;
  margin-bottom: 8px;
}

.sejarah-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  border-radius: 2px;
  margin-bottom: 16px;
}

.profil-sejarah-content p {
  color: #68727d;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.profil-sejarah-content p:last-of-type {
  margin-bottom: 20px;
}

.sejarah-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #172235;
  font-weight: 600;
  border: 1px solid #edf0f0;
}

.meta-item i {
  color: #08765c;
}

/* ----- PROFIL DESKRIPSI ----- */
.profil-deskripsi-section {
  padding: 70px 0 80px 0;
  background: #f5f7f8;
}

.profil-deskripsi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.profil-deskripsi-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px 30px;
  border: 1px solid #edf0f0;
  transition: all 0.4s ease;
  text-align: center;
}

.profil-deskripsi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.12);
  border-color: #a5d6a7;
}

.card-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #08765c;
  transition: all 0.4s ease;
}

.profil-deskripsi-card:hover .card-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  transform: scale(1.1);
}

.profil-deskripsi-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 12px;
}

.profil-deskripsi-card > p {
  font-size: 0.9rem;
  color: #68727d;
  line-height: 1.7;
  margin-bottom: 16px;
}

.profil-deskripsi-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.profil-deskripsi-card ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: #68727d;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f5f7f8;
}

.profil-deskripsi-card ul li:last-child {
  border-bottom: none;
}

.profil-deskripsi-card ul li i {
  color: #08765c;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ----- KOMPETENSI LULUSAN ----- */
.profil-kompetensi-section {
  padding: 70px 0 80px 0;
  background: white;
}

.kompetensi-header {
  text-align: center;
  margin-bottom: 45px;
}

.kompetensi-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: #e8f5e9;
  color: #08765c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.kompetensi-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #172235;
}

.kompetensi-header p {
  color: #68727d;
  font-size: 0.95rem;
  margin-top: 5px;
}

.kompetensi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.kompetensi-item {
  display: flex;
  gap: 18px;
  background: #f5f7f8;
  border-radius: 16px;
  padding: 25px 22px;
  border: 1px solid #edf0f0;
  transition: all 0.4s ease;
  align-items: flex-start;
}

.kompetensi-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(8, 118, 92, 0.1);
  border-color: #a5d6a7;
  background: white;
}

.kompetensi-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kompetensi-item.kompetensi-tambahan .kompetensi-number {
  background: linear-gradient(135deg, #1a472a, #2d6a4f);
}

.kompetensi-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 6px;
}

.kompetensi-content p {
  font-size: 0.88rem;
  color: #68727d;
  line-height: 1.7;
  margin: 0;
}

/* ----- LEARNING OUTCOMES ----- */
.profil-outcomes-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.outcome-item {
  display: flex;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 24px;
  transition: all 0.35s ease;
  align-items: flex-start;
}

.outcome-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(50, 214, 157, 0.4);
  transform: translateY(-4px);
}

.outcome-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(50, 214, 157, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #32d69d;
}

.outcome-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.outcome-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* ----- PELUANG KARIR ----- */
.profil-karir-section {
  padding: 70px 0 80px 0;
  background: #f5f7f8;
}

.karir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.karir-card {
  background: white;
  border-radius: 18px;
  padding: 30px 25px;
  border: 1px solid #edf0f0;
  text-align: center;
  transition: all 0.4s ease;
}

.karir-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 118, 92, 0.12);
  border-color: #a5d6a7;
}

.karir-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #08765c;
  transition: all 0.4s ease;
}

.karir-card:hover .karir-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
  transform: rotateY(180deg);
}

.karir-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 12px;
}

.karir-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.karir-card ul li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: #68727d;
  border-bottom: 1px solid #f5f7f8;
  position: relative;
  padding-left: 20px;
}

.karir-card ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #08765c;
  font-weight: 700;
}

.karir-card ul li:last-child {
  border-bottom: none;
}

/* ----- AKREDITASI ----- */
.profil-akreditasi-section {
  padding: 70px 0 80px 0;
  background: white;
}

.akreditasi-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5f7f8, #e8f5e9);
  border-radius: 24px;
  padding: 45px 50px;
  border: 1px solid #a5d6a7;
}

.akreditasi-content {
  flex: 1;
}

.akreditasi-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: #08765c;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.akreditasi-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #172235;
  margin-bottom: 12px;
}

.akreditasi-content h2 span {
  color: #08765c;
  font-size: 2.5rem;
}

.akreditasi-content p {
  color: #68727d;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.akreditasi-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.akreditasi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #172235;
}

.akreditasi-item i {
  color: #08765c;
  font-size: 0.9rem;
}

.akreditasi-visual {
  flex-shrink: 0;
  text-align: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08765c, #19c98b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 40px rgba(8, 118, 92, 0.25);
}

.akreditasi-visual i {
  font-size: 3rem;
  margin-bottom: 8px;
}

.akreditasi-visual span {
  font-size: 2rem;
  font-weight: 800;
}

.akreditasi-visual p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 0;
}

/* ----- CTA ----- */
.profil-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.profil-cta-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.profil-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.profil-cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.profil-cta-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #08765c;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE PROFIL LULUSAN
========================================================= */

@media (max-width: 1100px) {
  .profil-deskripsi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kompetensi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .karir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .profil-hero {
    padding: 180px 0 40px 0;
  }
  .profil-hero-content h1 {
    font-size: 2.1rem;
  }
  .profil-sejarah-wrapper {
    flex-direction: column;
    padding: 30px 25px;
  }
  .profil-sejarah-icon {
    margin: 0 auto;
  }
  .akreditasi-wrapper {
    flex-direction: column;
    padding: 30px 25px;
    text-align: center;
  }
  .akreditasi-detail {
    align-items: center;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profil-deskripsi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .kompetensi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .karir-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .profil-cta-box h2 {
    font-size: 1.6rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .sejarah-meta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .profil-hero-content h1 {
    font-size: 1.7rem;
  }
  .profil-hero-content p {
    font-size: 0.9rem;
  }
  .profil-sejarah-content h2 {
    font-size: 1.3rem;
  }
  .akreditasi-visual {
    width: 120px;
    height: 120px;
  }
  .akreditasi-visual i {
    font-size: 2.2rem;
  }
  .akreditasi-visual span {
    font-size: 1.5rem;
  }
}
/* =========================================================
   KURIKULUM PAI - STYLING LENGKAP
========================================================= */

/* ----- HERO ----- */
.kurikulum-hero {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.kurikulum-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.kurikulum-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.kurikulum-hero-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.kurikulum-hero-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.kurikulum-hero-content p {
  font-size: 1rem;
  color: #68727d;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* ----- SEMESTER SECTION ----- */
.kurikulum-semester {
  padding: 60px 0 70px 0;
  background: white;
}

.kurikulum-semester.alt-bg {
  background: #f5f7f8;
}

.semester-header {
  text-align: center;
  margin-bottom: 30px;
}

.semester-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.semester-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

/* ----- TABLE STYLING ----- */
.table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.kurikulum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.kurikulum-table thead {
  background: linear-gradient(135deg, #063d2b, #08765c);
}

.kurikulum-table thead th {
  padding: 16px 24px;
  text-align: left;
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.kurikulum-table thead th:last-child {
  text-align: center;
}

.kurikulum-table tbody tr {
  border-bottom: 1px solid #edf0f0;
  transition: background 0.3s ease;
}

.kurikulum-table tbody tr:hover {
  background: #f5f7f8;
}

.kurikulum-table tbody td {
  padding: 14px 24px;
  color: #172235;
}

.kurikulum-table tbody td:last-child {
  text-align: center;
  font-weight: 700;
  color: #08765c;
}

.kurikulum-table tbody tr:last-child {
  border-bottom: none;
}

.kurikulum-table tbody tr.total-row {
  background: #e8f5e9;
  font-weight: 700;
}

.kurikulum-table tbody tr.total-row td {
  padding: 14px 24px;
  color: #172235;
}

.kurikulum-table tbody tr.total-row td:last-child {
  color: #08765c;
  font-size: 1.1rem;
}

/* ----- TOTAL SKS WRAPPER ----- */
.total-sks-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.total-sks-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  border: 1px solid #edf0f0;
  border-radius: 16px;
  padding: 22px 30px;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.total-sks-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(8, 118, 92, 0.12);
  border-color: #a5d6a7;
}

.total-sks-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #08765c;
  flex-shrink: 0;
}

.total-sks-content {
  flex: 1;
}

.total-sks-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #68727d;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.total-sks-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.2;
}

.total-sks-content p {
  font-size: 0.85rem;
  color: #68727d;
  margin: 2px 0 0 0;
}

/* ----- PREVIEW SECTION ----- */
.kurikulum-preview {
  padding: 70px 0 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.preview-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.preview-header {
  text-align: center;
  margin-bottom: 40px;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.preview-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.preview-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
}

.preview-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(50, 214, 157, 0.4);
  transform: translateY(-4px);
}

.preview-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(50, 214, 157, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #32d69d;
}

.preview-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.preview-content p {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

.preview-content span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ----- CTA SECTION ----- */
.kurikulum-cta-section {
  padding: 70px 0 80px 0;
  background: white;
}

.kurikulum-cta-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.kurikulum-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.kurikulum-cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.2;
  margin-bottom: 16px;
}

.kurikulum-cta-box p {
  font-size: 1.05rem;
  color: #68727d;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ----- BUTTONS ----- */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(8, 118, 92, 0.25);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(8, 118, 92, 0.35);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #08765c;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #08765c;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #08765c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(8, 118, 92, 0.2);
}

/* =========================================================
   RESPONSIVE KURIKULUM PAI
========================================================= */

@media (max-width: 1100px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .kurikulum-hero {
    padding: 180px 0 40px 0;
  }
  .kurikulum-hero-content h1 {
    font-size: 2.1rem;
  }
  .total-sks-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .total-sks-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .kurikulum-table {
    font-size: 0.85rem;
  }
  .kurikulum-table thead th,
  .kurikulum-table tbody td {
    padding: 12px 16px;
  }
  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .preview-item {
    padding: 20px 16px;
  }
  .preview-content p {
    font-size: 1.1rem;
  }
  .kurikulum-cta-box h2 {
    font-size: 1.6rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .kurikulum-hero-content h1 {
    font-size: 1.7rem;
  }
  .semester-header h2 {
    font-size: 1.4rem;
  }
  .kurikulum-table {
    font-size: 0.75rem;
  }
  .kurikulum-table thead th,
  .kurikulum-table tbody td {
    padding: 10px 12px;
  }
  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .preview-item {
    padding: 16px 12px;
  }
  .preview-content p {
    font-size: 1rem;
  }
  .preview-content span {
    font-size: 0.75rem;
  }
  .preview-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .total-sks-number {
    font-size: 1.4rem;
  }
  .kurikulum-cta-box h2 {
    font-size: 1.3rem;
  }
}
/* =========================================================
   KURIKULUM S3 - TAMBAHAN STYLING
========================================================= */

/* ----- SYARAT KELULUSAN ----- */
.kurikulum-syarat-section {
  padding: 70px 0 80px 0;
  background: #f5f7f8;
}

.syarat-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.syarat-header {
  text-align: center;
  margin-bottom: 40px;
}

.syarat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.syarat-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

.syarat-header p {
  font-size: 1rem;
  color: #68727d;
  margin-top: 5px;
}

.syarat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.syarat-item {
  display: flex;
  gap: 18px;
  background: white;
  border: 1px solid #edf0f0;
  border-radius: 16px;
  padding: 25px 24px;
  transition: all 0.35s ease;
  align-items: flex-start;
}

.syarat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(8, 118, 92, 0.1);
  border-color: #a5d6a7;
}

.syarat-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #08765c;
  transition: all 0.3s ease;
}

.syarat-item:hover .syarat-icon {
  background: linear-gradient(135deg, #08765c, #19c98b);
  color: white;
}

.syarat-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 4px;
}

.syarat-content p {
  font-size: 0.9rem;
  color: #68727d;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   RESPONSIVE KURIKULUM S3
========================================================= */

@media (max-width: 850px) {
  .syarat-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .syarat-header h2 {
    font-size: 1.4rem;
  }
  .syarat-item {
    padding: 20px 18px;
  }
}

@media (max-width: 600px) {
  .syarat-header h2 {
    font-size: 1.2rem;
  }
  .syarat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* =========================================================
   CPL PAI - STYLING LENGKAP
========================================================= */

/* ----- HERO ----- */
.cpl-hero {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.cpl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.cpl-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.cpl-hero-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.cpl-hero-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.cpl-hero-content p {
  font-size: 1rem;
  color: #68727d;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* ----- CPL SECTION ----- */
.cpl-section {
  padding: 60px 0 70px 0;
  background: #f5f7f8;
}

.cpl-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.cpl-header {
  text-align: center;
  margin-bottom: 35px;
}

.cpl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cpl-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

.cpl-header p {
  font-size: 0.95rem;
  color: #68727d;
  margin-top: 5px;
}

/* ----- TABLE ----- */
.table-wrapper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.cpl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cpl-table thead {
  background: linear-gradient(135deg, #063d2b, #08765c);
}

.cpl-table thead th {
  padding: 16px 20px;
  text-align: left;
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cpl-table thead th:first-child {
  width: 80px;
  text-align: center;
}

.cpl-table tbody tr {
  border-bottom: 1px solid #edf0f0;
  transition: background 0.3s ease;
}

.cpl-table
  tbody
  tr:hover:not(.cpl-group-sikap):not(.cpl-group-pengetahuan):not(
    .cpl-group-keterampilan
  ):not(.cpl-group-umum) {
  background: #f5f7f8;
}

.cpl-table tbody td {
  padding: 14px 20px;
  color: #172235;
  vertical-align: top;
}

.cpl-table tbody td:first-child {
  text-align: center;
  vertical-align: middle;
}

.cpl-table tbody tr:last-child {
  border-bottom: none;
}

/* ----- GROUP HEADER ----- */
.cpl-group-sikap td,
.cpl-group-pengetahuan td,
.cpl-group-keterampilan td,
.cpl-group-umum td {
  padding: 0;
  background: transparent;
}

.group-header {
  padding: 0 !important;
}

.group-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: white;
  border-radius: 0;
}

.cpl-group-sikap .group-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cpl-group-pengetahuan .group-badge {
  background: linear-gradient(135deg, #2980b9, #1a5276);
}

.cpl-group-keterampilan .group-badge {
  background: linear-gradient(135deg, #f39c12, #d68910);
}

.cpl-group-umum .group-badge {
  background: linear-gradient(135deg, #27ae60, #1e8449);
}

.group-badge i {
  font-size: 1rem;
}

/* ----- CPL CODE ----- */
.cpl-code {
  display: inline-block;
  background: #e8f5e9;
  color: #08765c;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid #a5d6a7;
}

/* ----- RINGKASAN ----- */
.cpl-ringkasan-section {
  padding: 70px 0 80px 0;
  background: white;
}

.ringkasan-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.ringkasan-header {
  text-align: center;
  margin-bottom: 35px;
}

.ringkasan-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ringkasan-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

.ringkasan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ringkasan-card {
  background: #f5f7f8;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #edf0f0;
  transition: all 0.35s ease;
}

.ringkasan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(8, 118, 92, 0.1);
  border-color: #a5d6a7;
}

.ringkasan-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.ringkasan-card:nth-child(1) .ringkasan-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.ringkasan-card:nth-child(2) .ringkasan-icon {
  background: linear-gradient(135deg, #2980b9, #1a5276);
}

.ringkasan-card:nth-child(3) .ringkasan-icon {
  background: linear-gradient(135deg, #f39c12, #d68910);
}

.ringkasan-card:nth-child(4) .ringkasan-icon {
  background: linear-gradient(135deg, #27ae60, #1e8449);
}

.ringkasan-content {
  display: block;
}

.ringkasan-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #68727d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ringkasan-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #172235;
  margin: 4px 0;
}

.ringkasan-content p {
  font-size: 0.85rem;
  color: #68727d;
  margin: 0;
}

/* ----- CTA ----- */
.cpl-cta-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.cpl-cta-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cpl-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.cpl-cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cpl-cta-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* =========================================================
   RESPONSIVE CPL
========================================================= */

@media (max-width: 1100px) {
  .ringkasan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .cpl-hero {
    padding: 180px 0 40px 0;
  }
  .cpl-hero-content h1 {
    font-size: 2.1rem;
  }
  .cpl-table {
    font-size: 0.82rem;
  }
  .cpl-table thead th,
  .cpl-table tbody td {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .ringkasan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .ringkasan-card {
    padding: 20px 15px;
  }
  .ringkasan-number {
    font-size: 1.3rem;
  }
  .cpl-cta-box h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .cpl-hero-content h1 {
    font-size: 1.7rem;
  }
  .cpl-header h2 {
    font-size: 1.4rem;
  }
  .cpl-table {
    font-size: 0.75rem;
  }
  .cpl-table thead th,
  .cpl-table tbody td {
    padding: 10px 12px;
  }
  .cpl-table thead th:first-child {
    width: 50px;
  }
  .cpl-code {
    font-size: 0.7rem;
    padding: 2px 10px;
  }
  .ringkasan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ringkasan-card {
    padding: 16px 12px;
  }
  .ringkasan-number {
    font-size: 1.1rem;
  }
  .ringkasan-label {
    font-size: 0.7rem;
  }
  .cpl-cta-box h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 420px) {
  .ringkasan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ringkasan-card {
    padding: 12px 10px;
  }
  .ringkasan-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .ringkasan-number {
    font-size: 1rem;
  }
  .ringkasan-content p {
    font-size: 0.7rem;
  }
}
/* =========================================================
   REKAP CPL - STYLING LENGKAP
========================================================= */

/* ----- HERO ----- */
.rekap-hero {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.rekap-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.rekap-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.rekap-hero-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.rekap-hero-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.rekap-hero-content p {
  font-size: 1rem;
  color: #68727d;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* ----- REKAP SECTION ----- */
.rekap-section {
  padding: 60px 0 70px 0;
  background: #f5f7f8;
}

.rekap-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.rekap-header {
  text-align: center;
  margin-bottom: 35px;
}

.rekap-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.rekap-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

.rekap-header p {
  font-size: 0.95rem;
  color: #68727d;
  margin-top: 5px;
}

/* ----- TABLE ----- */
.table-wrapper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.rekap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 900px;
}

.rekap-table thead {
  background: linear-gradient(135deg, #063d2b, #08765c);
}

.rekap-table thead th {
  padding: 10px 8px;
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rekap-table thead th.no-col {
  width: 40px;
}

.rekap-table thead th.mk-col {
  min-width: 200px;
  text-align: left;
  padding-left: 12px;
}

.rekap-table thead th.sks-col {
  width: 45px;
}

.rekap-table thead th.cpl-header {
  width: 35px;
}

.rekap-table tbody td {
  padding: 8px 6px;
  text-align: center;
  border: 1px solid #edf0f0;
  color: #172235;
  font-size: 0.78rem;
}

.rekap-table tbody td:first-child {
  font-weight: 600;
  color: #68727d;
}

.rekap-table tbody td:nth-child(2) {
  text-align: left;
  padding-left: 12px;
  font-weight: 500;
}

.rekap-table tbody td:nth-child(3) {
  font-weight: 700;
  color: #08765c;
}

.rekap-table tbody td:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
  font-size: 0.9rem;
}

.rekap-table
  tbody
  td:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):empty::before {
  content: "";
}

.rekap-table
  tbody
  td:not(:first-child):not(:nth-child(2)):not(:nth-child(3)):not(:empty) {
  color: #08765c;
  font-weight: 700;
}

.rekap-table tbody tr:hover:not(.semester-row):not(.total-row) {
  background: #f5f7f8;
}

/* ----- SEMESTER HEADER ----- */
.semester-row td {
  padding: 0 !important;
  background: transparent !important;
}

.semester-header {
  padding: 10px 16px !important;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9) !important;
  font-weight: 700;
  text-align: left !important;
  border: 1px solid #a5d6a7 !important;
}

.semester-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff; /* Warna teks menjadi putih */
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.semester-badge i {
  font-size: 0.9rem;
}

/* ----- TOTAL ROW ----- */
.total-row td {
  padding: 12px 8px !important;
  background: #e8f5e9 !important;
  font-weight: 700;
  border: 1px solid #a5d6a7 !important;
}

.total-row td:first-child {
  text-align: right;
  padding-right: 16px !important;
}

.total-row td:nth-child(3) {
  font-size: 1rem;
  color: #08765c;
}

/* ----- LEGENDA ----- */
.rekap-legenda-section {
  padding: 70px 0 80px 0;
  background: white;
}

.legenda-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.legenda-header {
  text-align: center;
  margin-bottom: 35px;
}

.legenda-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.legenda-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

.legenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.legenda-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f5f7f8;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid #edf0f0;
  transition: all 0.3s ease;
}

.legenda-item:hover {
  background: white;
  border-color: #a5d6a7;
  box-shadow: 0 4px 15px rgba(8, 118, 92, 0.08);
}

.legenda-code {
  flex-shrink: 0;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 2px;
}

.legenda-item p {
  font-size: 0.85rem;
  color: #68727d;
  margin: 0;
  line-height: 1.5;
}

/* ----- CTA ----- */
.rekap-cta-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.rekap-cta-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.rekap-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #32d69d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.rekap-cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.rekap-cta-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* =========================================================
   RESPONSIVE REKAP CPL
========================================================= */

@media (max-width: 1100px) {
  .legenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .rekap-hero {
    padding: 180px 0 40px 0;
  }
  .rekap-hero-content h1 {
    font-size: 2.1rem;
  }
  .rekap-table {
    font-size: 0.7rem;
  }
  .rekap-table thead th {
    padding: 6px 4px;
    font-size: 0.65rem;
  }
  .rekap-table tbody td {
    padding: 6px 4px;
    font-size: 0.68rem;
  }
  .rekap-table thead th.mk-col {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .legenda-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .rekap-cta-box h2 {
    font-size: 1.6rem;
  }
  .rekap-header h2 {
    font-size: 1.4rem;
  }
  .rekap-table {
    font-size: 0.65rem;
    min-width: 700px;
  }
}

@media (max-width: 600px) {
  .rekap-hero-content h1 {
    font-size: 1.7rem;
  }
  .rekap-cta-box h2 {
    font-size: 1.3rem;
  }
  .legenda-item {
    padding: 12px 14px;
  }
  .legenda-item p {
    font-size: 0.8rem;
  }
}
/* =========================================================
   KARYA DOSEN - STYLING LENGKAP
========================================================= */

/* ----- HERO ----- */
.dosen-hero {
  background: linear-gradient(180deg, #ffffff, #f5f7f8);
  padding: 200px 0 50px 0;
  text-align: center;
  border-bottom: 4px solid #08765c;
}

.dosen-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.dosen-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.dosen-hero-content h1.highlight {
  color: #08765c;
  margin-top: -3px;
}

.dosen-hero-content .header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #08765c, #19c98b);
  margin: 18px auto;
  border-radius: 2px;
}

.dosen-hero-content p {
  font-size: 1rem;
  color: #68727d;
  max-width: 650px;
  margin: 5px auto 0;
  line-height: 1.7;
}

/* ----- DOSEN GRID ----- */
.dosen-grid-section {
  padding: 60px 0 70px 0;
  background: #f5f7f8;
}

.dosen-grid-header {
  text-align: center;
  margin-bottom: 45px;
}

.dosen-grid-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.dosen-grid-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #172235;
}

.dosen-grid-header p {
  font-size: 0.95rem;
  color: #68727d;
  margin-top: 5px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- DOSEN CARD 3D FLIP ----- */
.dosen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.dosen-card {
  perspective: 1000px;
  height: 380px;
  cursor: pointer;
}

.dosen-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.dosen-card:hover .dosen-card-inner {
  transform: rotateY(180deg);
}

.dosen-card-front,
.dosen-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #edf0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.dosen-card-front {
  background: white;
}

.dosen-card-back {
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
  color: white;
  transform: rotateY(180deg);
}

/* ----- FRONT CARD ----- */
.dosen-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e8f5e9;
  box-shadow: 0 8px 25px rgba(8, 118, 92, 0.15);
  margin-bottom: 15px;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.dosen-card:hover .dosen-avatar {
  border-color: #08765c;
  transform: scale(1.05);
}

.dosen-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dosen-card-front h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #172235;
  margin-bottom: 4px;
  line-height: 1.3;
}

.dosen-jabatan {
  font-size: 0.75rem;
  color: #08765c;
  font-weight: 600;
  margin-bottom: 10px;
}

.dosen-quick-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.dosen-quick-stats span {
  font-size: 0.7rem;
  color: #68727d;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dosen-quick-stats span i {
  color: #08765c;
}

.dosen-hover-indicator {
  font-size: 0.7rem;
  color: #a5d6a7;
  margin-top: 5px;
}

.dosen-hover-indicator i {
  transition: transform 0.3s ease;
}

.dosen-card:hover .dosen-hover-indicator i {
  transform: translateX(5px);
}

/* ----- BACK CARD ----- */
.dosen-back-content {
  width: 100%;
  text-align: left;
}

.dosen-back-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}

.dosen-back-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.dosen-back-content ul li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dosen-back-content ul li:last-child {
  border-bottom: none;
}

.dosen-back-content ul li i {
  color: #32d69d;
  font-size: 0.7rem;
  margin-top: 3px;
}

.dosen-links {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.dosen-link-gg,
.dosen-link-sinta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dosen-link-gg {
  background: white;
  color: #08765c;
}

.dosen-link-gg:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dosen-link-sinta {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dosen-link-sinta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ----- STATISTIK DOSEN ----- */
.dosen-stats-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #063d2b, #08765c, #0c9d89);
}

.dosen-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.dosen-stat-item {
  color: white;
  padding: 25px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.dosen-stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(25, 201, 139, 0.4);
}

.dosen-stat-icon {
  font-size: 2.2rem;
  color: #32d69d;
  margin-bottom: 8px;
}

.dosen-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  color: white;
  line-height: 1.2;
}

.dosen-stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ----- CTA ----- */
.dosen-cta-section {
  padding: 70px 0 80px 0;
  background: white;
}

.dosen-cta-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.dosen-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #08765c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.dosen-cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #172235;
  line-height: 1.2;
  margin-bottom: 16px;
}

.dosen-cta-box p {
  font-size: 1.05rem;
  color: #68727d;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ----- BUTTONS ----- */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #08765c, #0c9d89);
  color: white;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(8, 118, 92, 0.25);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(8, 118, 92, 0.35);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #08765c;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #08765c;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #08765c;
  color: white;
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE DOSEN
========================================================= */

@media (max-width: 1200px) {
  .dosen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .dosen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dosen-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .dosen-hero {
    padding: 180px 0 40px 0;
  }
  .dosen-hero-content h1 {
    font-size: 2.1rem;
  }
  .dosen-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .dosen-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .dosen-card {
    height: 330px;
  }
  .dosen-avatar {
    width: 80px;
    height: 80px;
  }
  .dosen-card-front h3 {
    font-size: 0.85rem;
  }
  .dosen-cta-box h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .dosen-hero-content h1 {
    font-size: 1.7rem;
  }
  .dosen-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .dosen-card {
    height: 380px;
  }
  .dosen-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dosen-stat-number {
    font-size: 1.8rem;
  }
  .dosen-cta-box h2 {
    font-size: 1.3rem;
  }
  .dosen-grid-header h2 {
    font-size: 1.4rem;
  }
  .dosen-links {
    flex-direction: column;
    align-items: center;
  }
  .dosen-link-gg,
  .dosen-link-sinta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .dosen-stat-number {
    font-size: 1.5rem;
  }
  .dosen-stat-label {
    font-size: 0.75rem;
  }
  .dosen-stat-icon {
    font-size: 1.6rem;
  }
  .dosen-card {
    height: 360px;
  }
  .dosen-avatar {
    width: 70px;
    height: 70px;
  }
}
/* Saat submenu di-flip membuka ke kanan (karena kehabisan ruang di kiri) */
.submenu.flip-right {
  right: auto;
  left: calc(100% + 10px);
  transform: translateX(-10px) scale(0.97);
}

.has-submenu:hover .submenu.flip-right {
  transform: translateX(0) scale(1);
}

.submenu.flip-right::before {
  right: auto;
  left: -7px;
  border-top: 1px solid #edf0f0;
  border-right: none;
  border-left: 1px solid #edf0f0;
  transform: rotate(-135deg);
}

/* =========================================================
   ACCORDION SUBMENU (flyout ke samping, klik untuk buka)
========================================================= */

.has-submenu.accordion > .submenu {
  position: absolute;
  top: -8px;
  right: calc(100% + 10px);
  left: auto;
  min-width: 260px;
  max-width: 320px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid #edf0f0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 999999;
}

.has-submenu.accordion > .submenu::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -7px;
  width: 14px;
  height: 14px;
  background: white;
  border-top: 1px solid #edf0f0;
  border-right: 1px solid #edf0f0;
  transform: rotate(45deg);
}

.has-submenu.accordion.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.has-submenu.accordion > a .submenu-arrow {
  transition: transform 0.3s ease;
}

.has-submenu.accordion.open > a .submenu-arrow {
  transform: rotate(180deg);
}

.has-submenu.accordion:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.has-submenu.accordion.open:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

/* Di layar sempit, balik ke mode susun ke bawah (lebih aman) */
@media (max-width: 1100px) {
  .has-submenu.accordion > .submenu {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    max-width: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    border-left: 2px solid #08765c;
    border-radius: 0;
    margin: 2px 0 2px 26px;
    padding: 0;
    min-width: 0;
    width: calc(100% - 26px);
    opacity: 1;
    visibility: hidden;
    transform: none;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
  }
  .has-submenu.accordion > .submenu::before {
    display: none;
  }
  .has-submenu.accordion.open > .submenu {
    visibility: visible;
    max-height: 600px;
    padding: 4px 0;
  }
}
/* ============================================================
   HERO SECTION
============================================================ */
.vmt-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2b6cb0 100%);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.vmt-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(43, 108, 176, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(66, 153, 225, 0.2) 0%,
      transparent 60%
    );
  animation: vmtHeroPulse 8s ease-in-out infinite;
}

@keyframes vmtHeroPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.vmt-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.vmt-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  color: #90cdf4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vmt-hero-badge i {
  margin-right: 8px;
}

.vmt-hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 15px;
}

.vmt-hero-title-main {
  display: block;
}

.vmt-hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #f6ad55, #fbd38d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmt-hero-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f6ad55, #fbd38d);
  margin: 20px auto;
  border-radius: 2px;
}

.vmt-hero-desc {
  font-size: 18px;
  color: #bee3f8;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 40px;
}

.vmt-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.vmt-hero-stat {
  text-align: center;
}

.vmt-hero-stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #fbd38d;
  font-family: "Georgia", serif;
}

.vmt-hero-stat-label {
  font-size: 14px;
  color: #90cdf4;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Wave */
.vmt-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.vmt-hero-wave-fill {
  fill: #f7fafc;
}

/* ============================================================
   VISI SECTION
============================================================ */
.vmt-visi-section {
  padding: 80px 0 60px;
  background: #f7fafc;
}

.vmt-visi-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.vmt-visi-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #2b6cb0, #f6ad55);
}

.vmt-visi-icon-wrapper {
  flex-shrink: 0;
}

.vmt-visi-icon-pulse {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2b6cb0, #1a365d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fbd38d;
  animation: vmtPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(43, 108, 176, 0.4);
}

@keyframes vmtPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(43, 108, 176, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(43, 108, 176, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(43, 108, 176, 0);
  }
}

.vmt-visi-content {
  flex: 1;
}

.vmt-visi-tag {
  display: inline-block;
  background: #ebf8ff;
  color: #2b6cb0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.vmt-visi-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.vmt-visi-text-wrapper {
  position: relative;
  padding: 20px 30px;
  background: #f7fafc;
  border-radius: 12px;
  margin-bottom: 20px;
}

.vmt-quote-icon {
  color: #f6ad55;
  font-size: 20px;
  opacity: 0.6;
}

.vmt-visi-text {
  font-size: 20px;
  font-weight: 500;
  color: #2d3748;
  line-height: 1.8;
  text-align: center;
  margin: 10px 0;
  font-style: italic;
}

.vmt-visi-highlight {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.vmt-visi-highlight span {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

.vmt-visi-highlight i {
  color: #48bb78;
  margin-right: 8px;
}

/* ============================================================
   MISI SECTION
============================================================ */
.vmt-misi-section {
  padding: 80px 0 60px;
  background: #ffffff;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  background: #ebf8ff;
  color: #2b6cb0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  color: #bee3f8;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.section-title.light {
  color: #ffffff;
}

.section-title-highlight {
  color: #f6ad55;
}

.section-title-highlight.light {
  color: #fbd38d;
}

.section-desc {
  font-size: 16px;
  color: #718096;
  line-height: 1.8;
}

.section-desc.light {
  color: #bee3f8;
}

.vmt-misi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vmt-misi-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 35px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.vmt-misi-card:hover {
  transform: translateY(-10px);
  border-color: #2b6cb0;
  box-shadow: 0 20px 40px rgba(43, 108, 176, 0.15);
}

.vmt-misi-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(43, 108, 176, 0.05);
  font-family: "Georgia", serif;
  line-height: 1;
  transition: all 0.3s ease;
}

.vmt-misi-card:hover .vmt-misi-card-number {
  color: rgba(43, 108, 176, 0.15);
  transform: scale(1.1);
}

.vmt-misi-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ebf8ff, #bee3f8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2b6cb0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.vmt-misi-card:hover .vmt-misi-card-icon {
  background: linear-gradient(135deg, #2b6cb0, #1a365d);
  color: #fbd38d;
  transform: scale(1.05);
}

.vmt-misi-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.vmt-misi-card-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
}

.vmt-misi-card-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2b6cb0, #f6ad55);
  border-radius: 2px;
  margin-top: 20px;
  transition: width 0.3s ease;
}

.vmt-misi-card:hover .vmt-misi-card-line {
  width: 60px;
}

/* ============================================================
   TUJUAN SECTION
============================================================ */
.vmt-tujuan-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2b6cb0 100%);
  position: relative;
  overflow: hidden;
}

.vmt-tujuan-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
}

.vmt-tujuan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vmt-tujuan-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.vmt-tujuan-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  border-color: rgba(251, 189, 141, 0.3);
}

.vmt-tujuan-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(251, 189, 141, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbd38d;
  font-size: 18px;
}

.vmt-tujuan-content p {
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   SASARAN SECTION
============================================================ */
.vmt-sasaran-section {
  padding: 80px 0 60px;
  background: #f7fafc;
}

.vmt-sasaran-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.vmt-sasaran-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-left: 4px solid #2b6cb0;
  transition: all 0.3s ease;
}

.vmt-sasaran-item:hover {
  box-shadow: 0 10px 30px rgba(43, 108, 176, 0.12);
  transform: translateX(5px);
}

.vmt-sasaran-item:nth-child(even) {
  border-left-color: #f6ad55;
}

.vmt-sasaran-item:nth-child(3n) {
  border-left-color: #48bb78;
}

.vmt-sasaran-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2b6cb0, #1a365d);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.vmt-sasaran-item:nth-child(even) .vmt-sasaran-number {
  background: linear-gradient(135deg, #f6ad55, #ed8936);
}

.vmt-sasaran-item:nth-child(3n) .vmt-sasaran-number {
  background: linear-gradient(135deg, #48bb78, #38a169);
}

.vmt-sasaran-content p {
  font-size: 14px;
  color: #2d3748;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
  .vmt-hero-title {
    font-size: 40px;
  }

  .vmt-hero-stats {
    gap: 30px;
  }

  .vmt-hero-stat-number {
    font-size: 30px;
  }

  .vmt-visi-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .vmt-visi-highlight {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .vmt-hero {
    padding: 80px 0 60px;
    min-height: 400px;
  }

  .vmt-hero-title {
    font-size: 30px;
  }

  .vmt-hero-desc {
    font-size: 16px;
  }

  .vmt-hero-stats {
    gap: 20px;
  }

  .vmt-hero-stat-number {
    font-size: 24px;
  }

  .vmt-hero-stat-label {
    font-size: 12px;
  }

  .vmt-visi-text {
    font-size: 17px;
  }

  .vmt-visi-icon-pulse {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .vmt-misi-grid {
    grid-template-columns: 1fr;
  }

  .vmt-tujuan-grid {
    grid-template-columns: 1fr;
  }

  .vmt-sasaran-grid {
    grid-template-columns: 1fr;
  }

  .vmt-visi-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .vmt-hero-title {
    font-size: 24px;
  }

  .vmt-hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .vmt-misi-card {
    padding: 25px 20px;
  }
}
