/* =========================
   GLOBAL / TYPOGRAPHY
========================= */
body {
  font-family: "Poppins", serif;
  letter-spacing: 0.08px;
  color: #0f172a;
}

.hero-visual-clean,
.hero-visual-refined,
.hero-visual {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  min-width: 0;
}

/* =========================
   HERO
========================= */
.hero-grid-refined {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  column-gap: 64px;
  padding-top: 0;
}

.hero-copy-refined {
  padding-top: 0;
  max-width: 580px;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-visual-refined {
  padding-top: 0;
  justify-self: end;
  width: 100%;
  max-width: 820px;
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-main-title {
  margin: 0 auto;
  color: #0f172a;
  font-size: clamp(2.9rem, 5.4vw, 5.15rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.045em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  width: 100%;
}

.hero-title-line {
  display: block;
  width: 100%;
  text-align: center;
  color: #0f172a;
  text-shadow: none;
}

.hero-title-line-middle {
  font-size: 0.82em;
  line-height: 1;
  padding-left: 0;
  text-align: center;
  color: #475569;
  font-weight: 700;
  margin: 2px 0;
}

.hero-title-line-accent {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.hero-main-desc {
  margin: 0;
  color: #667085;
  font-size: 1.04rem;
  line-height: 1.9;
  max-width: 700px;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-mini-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-point {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-point strong {
  display: block;
  margin-bottom: 6px;
  color: #16233b;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-point span {
  display: block;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.72;
}

/* =========================
   HERO CAROUSEL
========================= */
.hero-carousel-right {
  position: relative;
  width: 100%;
  margin-left: auto;
  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 {
  position: relative;
  width: 100%;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}

.hero-slide {
  position: absolute;
  inset: 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    visibility 0.8s ease;
  overflow: hidden;
  border-radius: 20px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.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: cover;
  object-position: center;
  background: transparent;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero-slide.active img {
  transform: scale(1.03);
}

/* =========================
   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;
}

.hero-carousel-btn {
  position: absolute;
  top: calc((clamp(420px, 36vw, 600px)) / 2);
  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;
}

.hero-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.36);
}

.hero-carousel-btn.prev {
  left: 30px;
}

.hero-carousel-btn.next {
  right: 30px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}

.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);
}

/* =========================
   SECTION HEAD CENTER
========================= */
.section-head-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-head-center > div {
  width: 100%;
}

.section-head-center .section-tag {
  display: inline-flex;
  margin-inline: auto;
  margin-bottom: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.section-head-center h2 {
  margin: 0 auto 14px;
  color: #16233b;
  font-size: clamp(2rem, 4.3vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-head-center p {
  margin: 0 auto;
  color: #667085;
  max-width: 660px;
  line-height: 1.82;
  font-size: 1rem;
}

.section-head-compact {
  margin-top: -10px;
  margin-bottom: 28px;
}

.section-head-compact p {
  max-width: 720px;
}

/* =========================
   NEWS / SHOWCASE SHARED
========================= */
.news-showcase-wrap {
  position: relative;
}

.news-showcase-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 34px;
}

.news-showcase-head h2 {
  margin: 0;
  color: #003f84;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.news-showcase-line {
  width: 128px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a017, transparent);
  border-radius: 999px;
}

.news-showcase {
  position: relative;
}

.news-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.news-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.news-track .news-feature-card {
  width: 360px !important;
  min-width: 360px !important;
  max-width: 360px !important;
  flex: 0 0 360px !important;
}

@media (max-width: 760px) {
  .news-track .news-feature-card {
    width: 290px !important;
    min-width: 290px !important;
    max-width: 290px !important;
    flex: 0 0 290px !important;
  }
}

.news-feature-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-feature-link {
  display: block;
  text-decoration: none;
}

.news-feature-image {
  overflow: hidden;
  background: #f3f6fb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.news-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-feature-card:hover .news-feature-image img {
  transform: scale(1.03);
}

.news-feature-body {
  padding: 18px 14px 0;
}

.news-feature-body h3 {
  margin: 0 0 12px;
  color: #003f84;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.news-feature-body p {
  margin: 0;
  color: #5f6c7c;
  font-size: 0.94rem;
  line-height: 1.65;
}

.news-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  background: var(--primary, #214c9a);
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 24px rgba(33, 76, 154, 0.2);
}

.news-nav-btn:hover {
  background: #0b4b95;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 30px rgba(33, 76, 154, 0.3);
}

.news-nav-prev {
  left: -24px;
}

.news-nav-next {
  right: -24px;
}

@media (max-width: 760px) {
  .news-nav-prev {
    left: -8px;
  }
  .news-nav-next {
    right: -8px;
  }
  .news-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}

/* =========================
   LAYANAN - SEPERTI BERITA
========================= */
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.layanan-grid .news-feature-card {
  min-width: 100%;
  max-width: 100%;
}

/* =========================
   VIDEO - SEPERTI BERITA
========================= */
.video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.video-grid .news-feature-card {
  width: 100%;
  max-width: 360px;
  flex: 0 1 360px;
}

.video-thumb {
  position: relative;
  overflow: hidden;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(0px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-overlay::before {
  content: "";
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(33, 76, 154, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-overlay::after {
  content: "";
  position: absolute;
  margin-left: 6px;
  border-left: 16px solid #214c9a;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Hover Transitions */
.news-feature-card:hover .video-play-overlay {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.news-feature-card:hover .video-play-overlay::before {
  transform: scale(1.12);
  background: var(--primary);
  box-shadow: 0 14px 38px rgba(33, 76, 154, 0.4);
}

.news-feature-card:hover .video-play-overlay::after {
  transform: scale(1.12);
  border-left-color: #ffffff;
}

/* =========================
   CTA BANNER
========================= */
.cta-banner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 20%, rgba(159, 184, 232, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(33, 76, 154, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 48px rgba(27, 50, 98, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.cta-banner-copy h2 {
  margin: 12px 0 12px;
  color: #16233b;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* =========================
   LINKS / CTA
========================= */
.inline-link {
  display: inline-flex;
  margin-top: 2px;
  font-weight: 600;
  color: #214c9a;
  letter-spacing: -0.01em;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* =========================
   RESPONSIVE <= 1200
========================= */
@media (max-width: 1200px) {
  .news-feature-card {
    min-width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .layanan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }
}

/* =========================
   RESPONSIVE <= 1080
========================= */
@media (max-width: 1080px) {
  .hero-grid-refined {
    grid-template-columns: 1fr;
    row-gap: 34px;
    column-gap: 0;
    padding-top: 8px;
  }

  .hero-copy-refined {
    padding-top: 8px;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-visual-refined {
    padding-top: 20px;
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-carousel-right {
    border-radius: 28px;
  }

  .hero-carousel-track {
    height: 420px;
    min-height: 420px;
    padding: 16px;
  }

  .hero-slide {
    inset: 16px;
    border-radius: 20px;
  }

  .hero-carousel-btn {
    top: 210px;
  }

  .hero-carousel-caption {
    min-height: 235px;
  }

  .hero-caption-content {
    padding: 24px 22px 26px;
  }

  .hero-carousel-caption h3 {
    font-size: 1.24rem;
  }

  .hero-carousel-caption p {
    font-size: 0.94rem;
  }

  .hero-main-title {
    font-size: clamp(2.5rem, 4.9vw, 3.95rem);
  }

  .hero-mini-points {
    grid-template-columns: 1fr;
  }

  .news-nav-prev {
    left: -10px;
  }

  .news-nav-next {
    right: -10px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    justify-content: flex-start;
  }
}

/* =========================
   RESPONSIVE <= 760
========================= */
@media (max-width: 760px) {
  .hero-topbar {
    align-items: flex-start;
  }

  .hero-carousel-right {
    border-radius: 22px;
  }

  .hero-carousel-track {
    height: 290px;
    min-height: 290px;
    padding: 12px;
  }

  .hero-slide {
    inset: 12px;
    border-radius: 16px;
  }

  .hero-carousel-btn {
    top: 145px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .hero-carousel-btn.prev {
    left: 16px;
  }

  .hero-carousel-btn.next {
    right: 16px;
  }

  .hero-carousel-caption {
    min-height: 250px;
  }

  .hero-caption-content {
    padding: 18px 16px 20px;
  }

  .hero-carousel-caption .hero-slide-badge {
    padding: 6px 10px;
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .hero-carousel-caption h3 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-carousel-caption p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .hero-caption-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-carousel-dots {
    margin-top: 14px;
    gap: 7px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

.hero-main-title {
  font-size: clamp(2rem, 9vw, 2.95rem);
  line-height: 1.05;
  gap: 2px;
  text-align: center;
  align-items: center;
}

.hero-title-line-middle {
  padding-left: 0;
  text-align: center;
}

  .hero-main-desc {
    font-size: 0.95rem;
    line-height: 1.78;
  }

  .layanan-grid {
    grid-template-columns: 1fr;
  }

  .news-showcase-head {
    gap: 14px;
    margin-bottom: 26px;
  }

  .news-showcase-line {
    width: 56px;
  }

  .news-feature-card {
    min-width: 100%;
    max-width: 100%;
  }

  .news-feature-body {
    padding: 16px 6px 0;
  }

  .news-feature-body h3 {
    font-size: 1rem;
  }

  .news-nav-btn {
    top: 90px;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .news-nav-prev {
    left: -4px;
  }

  .news-nav-next {
    right: -4px;
  }

  .section-head-center {
    margin-bottom: 30px;
  }

  .section-head-center h2 {
    font-size: 1.84rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .video-play-overlay::before {
    width: 60px;
    height: 60px;
  }

  .video-play-overlay::after {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .cta-banner {
    padding: 24px;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }
}

/* =========================
   NEWS MODAL
========================= */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.news-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.news-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(880px, 94%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(159, 184, 232, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.28s ease;
}

.news-modal.is-open .news-modal-dialog {
  transform: translateY(0) scale(1);
}

.news-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-modal-close:hover {
  background: rgba(15, 23, 42, 0.16);
  transform: scale(1.08);
}

.news-modal-content {
  padding: 32px 36px;
}

.news-modal-header {
  margin-bottom: 20px;
}

.news-modal-date {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(33, 76, 154, 0.08);
  color: #1e40af;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(33, 76, 154, 0.1);
}

.news-modal-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.news-modal-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0 24px;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  padding: 16px;
  box-shadow: inset 0 2px 6px rgba(15, 23, 42, 0.04);
}

.news-modal-media img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  display: block;
  margin: 0 auto;
}

.news-modal-body {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.85;
  border-top: 1px solid #e2e8f0;
  padding-top: 22px;
}

.news-modal-body p {
  margin: 0 0 14px;
}

.news-modal-body ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.news-modal-body li {
  margin-bottom: 8px;
}

.news-modal-body a {
  color: #214c9a;
  font-weight: 600;
  text-decoration: none;
}

.news-modal-body a:hover {
  text-decoration: underline;
}

.news-card-meta {
  margin-bottom: 8px;
}

.news-card-date {
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
}

.news-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0 16px;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  color: #16233b;
  min-height: 2.9em;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(33, 76, 154, 0.08);
  color: #1e40af;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(33, 76, 154, 0.12);
  transition: all 0.25s ease;
  cursor: pointer;
  width: fit-content;
}

.btn-read-more:hover {
  background: #1e40af;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.24);
}

body.news-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .news-modal {
    padding: 14px;
  }

  .news-modal-dialog {
    border-radius: 20px;
  }

  .news-modal-media {
    padding: 18px 18px 0;
  }

  .news-modal-content {
    padding: 18px 18px 22px;
  }

  .news-modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .news-modal-media img {
    max-height: 300px;
    border-radius: 16px;
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible;
  margin-top: 0;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: #0f172a !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
  border-radius: 20px;
  overflow: hidden;
}

.hero-slide.active {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  cursor: zoom-in;
  display: block;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}

.hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.45) 70%, transparent 100%);
  color: #ffffff;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hero-slide-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fbbf24;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hero-slide-caption-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.4);
}

.hero-carousel-btn.prev {
  left: -22px;
}

.hero-carousel-btn.next {
  right: -22px;
}

.hero-carousel-dots {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 32px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

@media (max-width: 760px) {
  .hero-carousel-btn.prev {
    left: 8px;
  }

  .hero-carousel-btn.next {
    right: 8px;
  }

  .hero-carousel-dots {
    bottom: -22px;
  }
}
}

.hero-grid-refined {
  align-items: center;
  gap: 80px;
  min-height: 620px;
}

.hero-copy-refined {
  padding-top: 0;
}

.hero-visual-refined,
.hero-visual-wrapper {
  margin-top: 0 !important;
  align-self: center;
}

.hero-carousel-right {
  max-width: 780px;
  margin-left: auto;
}

/* =========================================================
   CHAMPIONSHIP PREMIUM HOME HERO REFINEMENTS
   ========================================================= */
#hero {
  position: relative;
  overflow: hidden;
  padding-top: 15px !important;
  padding-bottom: 40px !important;
  margin-top: 0 !important;
  border-bottom: 1px solid rgba(33, 76, 154, 0.05);
}

.hero-mesh-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 12% 15%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 88% 82%, rgba(37, 99, 235, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 45%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 50%, #eaefeb 100%);
  z-index: 1;
}

/* Grid dot/mesh pattern */
.hero-mesh-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(37, 99, 235, 0.045) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Abstract clean lines */
.hero-mesh-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Glowing Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.orb-primary {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -4%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(37, 99, 235, 0.02) 100%);
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

.orb-secondary {
  width: 500px;
  height: 500px;
  bottom: -120px;
  right: -2%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(96, 165, 250, 0.03) 100%);
  animation: orbFloat2 22s ease-in-out infinite alternate;
}

.orb-accent {
  width: 320px;
  height: 320px;
  top: 20%;
  left: 38%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.01) 100%);
  animation: orbFloat3 15s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -40px) scale(1.05); }
}

@keyframes orbFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -25px) scale(1.12); }
}

.hero-copy-refined h1 {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.01));
}

/* ==========================================
   NAVIGATION DROPDOWN BULLET REMOVAL OVERRIDE
   ========================================== */
.nav-dropdown .submenu-item .submenu-text::before,
.nav-dropdown .submenu-item .submenu-text::after,
.nav-dropdown .submenu-item::before,
.nav-dropdown .submenu-item::after,
.submenu-item .submenu-text::before,
.submenu-item .submenu-text::after,
.submenu-item::before,
.submenu-item::after,
.submenu-item:hover .submenu-text::before,
.submenu-item.current .submenu-text::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ==========================================
   REMOVE ALL PILL BADGES & SECTION TAGS
   ========================================== */
.page-hero-banner .badge,
.page-hero-banner .hero-badge,
.page-hero-banner span.badge,
.hero-copy > .badge,
.hero-badge,
.section-tag,
.badge-glow,
.dark-tag {
  display: none !important;
}

/* ==========================================
   IMAGE LIGHTBOX ZOOM MODAL STYLES
   ========================================== */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 94vw;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox.is-open .image-lightbox-dialog {
  transform: scale(1);
}

.image-lightbox-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.36);
  transform: scale(1.1);
}

.image-lightbox-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-lightbox-body img {
  max-width: 90vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
  display: block;
}

.image-lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 800px;
}

.news-modal-media img,
.news-feature-image img {
  cursor: zoom-in;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.news-modal-media img:hover {
  transform: scale(1.015);
  filter: brightness(1.03);
}

body.lightbox-open {
  overflow: hidden;
}

/* ==========================================
   HERO DUAL INFINITE MARQUEE LAYOUT
========================================== */
.hero-marquee-layout {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
}

.hero-marquee-grid {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1280px) {
  .hero-marquee-grid {
    grid-template-columns: 300px 1fr 300px;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .hero-marquee-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-column {
    display: none !important;
  }
}

.hero-column {
  height: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-marquee-track.marquee-up {
  animation: scrollMarqueeUp 32s linear infinite;
}

.hero-marquee-track.marquee-down {
  animation: scrollMarqueeDown 32s linear infinite;
}

.hero-column:hover .hero-marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarqueeUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollMarqueeDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.hero-marquee-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #ffffff;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.hero-marquee-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  z-index: 5;
}

.hero-marquee-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.marquee-card-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* CENTER HERO COPY */
.hero-copy-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-main-title.centered {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 580px;
  line-height: 1.65;
  margin: 0 auto 28px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-glow {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}
