.announcement-item strong {
  color: var(--primary);
  font-size: 1.02rem;
}

/* =========================
   SECTION / GLOBAL TUNING
========================= */
.full-width-slider-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(159, 184, 232, 0.14), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(33, 76, 154, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  overflow: hidden;
}

.full-width-slider-section::before,
.full-width-slider-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.full-width-slider-section::before {
  width: 240px;
  height: 240px;
  top: 40px;
  left: -70px;
  background: rgba(33, 76, 154, 0.10);
}

.full-width-slider-section::after {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: 40px;
  background: rgba(159, 184, 232, 0.16);
}

.slider-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.slider-title {
  text-align: center;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #16233b;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  text-wrap: balance;
}

.slider-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #667085;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.85;
}

/* =========================
   HERO CAROUSEL BASE
========================= */
.hero-carousel-right {
  position: relative;
  width: 100%;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: clamp(420px, 36vw, 600px);
  min-height: 420px;
  background:
    radial-gradient(circle at 15% 20%, rgba(159, 184, 232, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    visibility 0.8s ease;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.56), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(148, 163, 184, 0.12),
    0 18px 36px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.prev-slide {
  opacity: 0;
  visibility: visible;
  transform: translateX(-100%);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  transform: scale(1);
  transition: transform 6s ease;
  padding: 12px;
  margin: 0 auto;
}

.hero-slide.active img {
  transform: scale(1.02);
}

/* =========================
   HERO CAPTION
========================= */
.hero-carousel-caption {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  min-height: 255px;
  color: #ffffff;
}

.hero-caption-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.08);
  filter: blur(3px);
}

.hero-caption-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(33, 76, 154, 0.74)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.92));
}

.hero-caption-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 30px 32px;
}

.hero-carousel-caption .hero-slide-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1;
}

.hero-carousel-caption h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.58rem;
  line-height: 1.24;
  font-weight: 700;
  max-width: 760px;
  letter-spacing: -0.03em;
}

.hero-carousel-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.74;
  max-width: 760px;
}

.hero-caption-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.btn-light-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

/* =========================
   CAROUSEL BUTTONS / DOTS
========================= */
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 1.15rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.hero-carousel-btn.prev {
  left: 30px;
}

.hero-carousel-btn.next {
  right: 30px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.15);
}

@media (max-width: 760px) {
  #tentang-lppm .grid-3 {
    gap: 18px;
  }
}

/* =========================
   PRESTASI HERO OVERRIDES
========================= */
.prestasi-hero-visual {
  max-width: 1320px;
  margin: 0 auto;
}

.prestasi-hero-carousel {
  border-radius: 32px;
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.prestasi-hero-carousel .hero-carousel-track {
  height: clamp(400px, 36vw, 500px) !important;
  min-height: 400px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.74), transparent 24%),
    radial-gradient(circle at 15% 20%, rgba(159, 184, 232, 0.22), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.prestasi-hero-carousel .hero-slide {
  inset: 22px;
  border-radius: 24px;
}

.prestasi-hero-carousel .hero-slide img {
  object-fit: contain;
  object-position: center center;
  padding: 16px 18px;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
}

.prestasi-hero-carousel .hero-carousel-caption {
  min-height: 340px;
}

.prestasi-hero-carousel .hero-caption-content {
  padding: 42px 42px 48px;
}

.prestasi-hero-carousel-caption .hero-slide-badge {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.prestasi-hero-carousel-caption h3 {
  font-size: 1.95rem;
  line-height: 1.22;
  margin-bottom: 16px;
}

.prestasi-hero-carousel-caption p {
  font-size: 1.08rem;
  line-height: 1.72;
}

.prestasi-hero-carousel .hero-carousel-btn {
  width: 60px;
  height: 60px;
  font-size: 1.25rem;
}

.prestasi-hero-carousel .hero-carousel-btn.prev {
  left: 24px;
}

.prestasi-hero-carousel .hero-carousel-btn.next {
  right: 24px;
}

.prestasi-hero-carousel .hero-carousel-dots {
  gap: 12px;
  margin-top: 20px;
}

.prestasi-hero-carousel .hero-dot {
  width: 14px;
  height: 14px;
}

.prestasi-hero-carousel .hero-dot.active {
  transform: scale(1.2);
}

/* Full-width Larger Prestasi Slider */
.prestasi-full-slider {
  padding: 0 !important;
}

.full-width-carousel {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-track {
  height: clamp(420px, 40vw, 560px) !important;
  min-height: 420px;
  padding: 26px;
  border-radius: 0;
}

.prestasi-hero-carousel.full-width-carousel .hero-slide {
  inset: 26px;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.prestasi-hero-carousel.full-width-carousel .hero-slide img {
  object-fit: contain;
  object-position: center center;
  padding: 22px 24px;
  max-width: 88%;
  max-height: 88%;
  margin: 0 auto;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-caption {
  min-height: 420px;
}

.prestasi-hero-carousel.full-width-carousel .hero-caption-content {
  padding: 60px 60px 70px;
  max-width: 1000px;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-caption h3 {
  font-size: 2.6rem;
  line-height: 1.2;
}

/* Caption below images without action buttons */
.prestasi-hero-carousel .hero-caption-actions {
  display: none;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-caption p {
  font-size: 1.25rem;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-btn {
  width: 68px;
  height: 68px;
  font-size: 1.35rem;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-btn.prev {
  left: 24px;
}

.prestasi-hero-carousel.full-width-carousel .hero-carousel-btn.next {
  right: 24px;
}

.prestasi-hero-carousel.full-width-carousel .hero-dot {
  width: 16px;
  height: 16px;
}

.prestasi-hero-carousel.full-width-carousel .hero-dot.active {
  transform: scale(1.25);
}

.prestasi-slider-title {
  margin: 0 0 12px !important;
  font-size: clamp(2.3rem, 4.8vw, 3.65rem) !important;
  font-weight: 800;
  color: #16233b;
  letter-spacing: -0.05em;
}

/* =========================
   CERTIFICATE GRID
========================= */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.cert-card {
  background:
    radial-gradient(circle at top left, rgba(159, 184, 232, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(22, 35, 59, 0.12);
}

.cert-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.7), transparent 45%),
    linear-gradient(180deg, #f4f8ff 0%, #eef3fb 100%);
}

.cert-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
}

.cert-card:hover .cert-img-container img {
  transform: scale(1.04);
}

.cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 59, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-card:hover .cert-overlay {
  opacity: 1;
}

.cert-overlay span {
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
}

.cert-info {
  padding: 20px;
}

.cert-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #16233b;
}

.cert-info p {
  font-size: 0.9rem;
  color: #667085;
}

/* =========================
   MODAL / PDF VIEWER
========================= */
.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.cert-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
}

.modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #16233b;
  cursor: pointer;
  z-index: 11;
}

.modal-body {
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.modal-body iframe,
.modal-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .prestasi-hero-carousel.full-width-carousel .hero-carousel-track {
    height: 480px !important;
    min-height: 480px;
    padding: 22px;
  }

  .prestasi-hero-carousel.full-width-carousel .hero-slide {
    inset: 22px;
  }

  .prestasi-hero-carousel.full-width-carousel .hero-slide img {
    max-width: 90%;
    max-height: 90%;
    padding: 18px;
  }
}

@media (max-width: 1080px) {
  .prestasi-hero-carousel .hero-carousel-track {
    height: 420px !important;
    min-height: 420px;
    padding: 20px;
  }

  .prestasi-hero-carousel .hero-slide {
    inset: 20px;
    border-radius: 22px;
  }

  .prestasi-hero-carousel .hero-slide img {
    padding: 14px 16px;
    max-width: 92%;
    max-height: 92%;
  }

  .prestasi-hero-carousel .hero-carousel-btn {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .full-width-slider-section {
    padding: 80px 0;
  }

  .slider-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .slider-subtitle {
    font-size: 1rem;
    margin-bottom: 42px;
  }

  .prestasi-hero-carousel.full-width-carousel .hero-carousel-track {
    height: 320px !important;
    min-height: 320px;
    padding: 16px;
  }

  .prestasi-hero-carousel.full-width-carousel .hero-slide {
    inset: 16px;
    border-radius: 20px;
  }

  .prestasi-hero-carousel.full-width-carousel .hero-slide img {
    padding: 10px;
    max-width: 94%;
    max-height: 94%;
  }

  .prestasi-hero-carousel .hero-carousel-track {
    height: 300px !important;
    min-height: 300px;
    padding: 16px;
  }

  .prestasi-hero-carousel .hero-slide {
    inset: 16px;
    border-radius: 20px;
  }

  .prestasi-hero-carousel .hero-slide img {
    padding: 10px;
    max-width: 94%;
    max-height: 94%;
  }

  .prestasi-hero-carousel .hero-carousel-btn {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .prestasi-hero-carousel .hero-carousel-btn.prev {
    left: 14px;
  }

  .prestasi-hero-carousel .hero-carousel-btn.next {
    right: 14px;
  }
}

@media (max-width: 600px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-modal {
    padding: 10px;
  }

  .cert-img-container {
    height: 210px;
  }
}

/* =========================================================
   AWARD SHOWCASE VISUAL FOR PRESTASI HERO
   ========================================================= */
.award-showcase-visual {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.award-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(33, 76, 154, 0.05) 70%, transparent 100%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}

.main-trophy {
  font-size: 8rem;
  color: #fbbf24;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 15px 30px rgba(245, 158, 11, 0.3));
  animation: floatTrophy 5s ease-in-out infinite;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-badge i {
  color: #f59e0b;
}

.fb-1 {
  top: 10%;
  left: -5%;
  animation: floatBadge1 6s ease-in-out infinite;
}

.fb-2 {
  bottom: 10%;
  right: -5%;
  animation: floatBadge2 7s ease-in-out infinite;
}

.fb-3 {
  top: 45%;
  right: -10%;
  animation: floatBadge3 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1.1; }
}

@keyframes floatTrophy {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes floatBadge1 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px) scale(1.02); }
  100% { transform: translateY(0); }
}

@keyframes floatBadge2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px) scale(0.98); }
  100% { transform: translateY(0); }
}

@keyframes floatBadge3 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px) scale(1.04); }
  100% { transform: translateY(0); }
}