/* ═══════════════════════════════════════
   HOME PAGE — index.css
═══════════════════════════════════════ */

/* ─── HOME NAVBAR OVERRIDES ─── */
#navbar:not(.scrolled) .nav-link,
#navbar:not(.scrolled) .nav-mobile-link {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

#navbar:not(.scrolled) .nav-hamburger {
  color: rgba(255, 255, 255, 0.95);
}

#navbar:not(.scrolled) .nav-p3m-text p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* Use the user's uploaded HD sunset architectural background image directly */
  background-color: #0f172a;
  background-image: url('../img/hero-campus-sunset.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  padding-bottom: 8rem;
  /* Space for wavy divider and overlap cards */
}

/* Dark Overlay to ensure text readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.3) 45%, transparent 100%);
  z-index: 1;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  opacity: 0.20;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  z-index: 2;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding-top: 3rem;
    padding: 3rem 1.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 2.5rem 2.5rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeUp 0.5s ease forwards;
}

.hero-badge-dot-wrap {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.hero-badge-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f97316;
  opacity: 0.6;
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.hero-badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
}

.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  /* White text for dark overlay */
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.hero-title-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.hero-title-orange {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}

.hero-desc {
  color: #cbd5e1;
  /* Subtle light gray */
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.26s forwards;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
  }
}

.hero-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 99px;
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
}

.hero-btn-primary:hover::after {
  left: 150%;
}

.hero-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 99px;
  color: #1d4ed8;
  background: #ffffff;
  border: 2px solid #bfdbfe;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.hero-berdampak {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero-berdampak img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
}

/* ─── OVERLAP FEATURE CARDS ─── */
.hero-overlap-container {
  margin-top: -120px;
  position: relative;
  z-index: 50;
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .hero-overlap-container {
    margin-top: -160px;
  }
}

.overlap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .overlap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.overlap-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.overlap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

.overlap-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.overlap-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.overlap-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.overlap-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
  align-self: flex-start;
}

.overlap-link:hover {
  color: #2563eb;
}

/* ─── PROCESS / ALUR SECTION ─── */
.process-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.process-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.process-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.process-desc {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .process-timeline {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.process-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #3b82f6;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
  transition: all 0.3s;
}

.process-step:hover .process-icon {
  border-style: solid;
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.3);
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

.process-connector {
  display: none;
}

@media (min-width: 992px) {
  .process-connector {
    display: block;
    flex-grow: 1;
    height: 2px;
    background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 6px, transparent 6px, transparent 12px);
    margin-top: 36px;
    transform: translateY(-50%);
    opacity: 0.6;
  }
}

.process-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.3s;
}

.process-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

/* ───/* --- SAMBUTAN SECTION --- */
.sambutan-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}

.sambutan-color-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 8% 50%, rgba(239, 246, 255, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 55% 60% at 92% 55%, rgba(255, 247, 237, 0.33) 0%, transparent 55%);
}

.sambutan-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* Header */
.sambutan-header {
  margin-bottom: 1.25rem;
}

.sambutan-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: all 0.4s;
  margin-bottom: 0.5rem;
}

.sambutan-elegant-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.elegant-italic {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: #64748b;
  letter-spacing: 0;
}

.sambutan-underbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

/* Progress bar */
.sambutan-progress-wrap {
  height: 2px;
  background: #f1f5f9;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.sambutan-progress-bar {
  height: 100%;
  border-radius: 99px;
  width: 0%;
}

.sambutan-progress-bar.animating {
  animation: sambutanBarFill 8s linear forwards;
}

@keyframes sambutanBarFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Two-Column Grid */
.sambutan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .sambutan-grid {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .sambutan-grid {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}

/* Text Column (RIGHT on desktop) */
.sambutan-left-col {
  transition: opacity 0.4s, transform 0.4s;
  order: 2;
}

@media (min-width: 992px) {
  .sambutan-left-col {
    order: 2;
  }
}

.sambutan-text-content {
  margin-bottom: 1rem;
}

.sambutan-para {
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 0.6rem;
}

.sambutan-para:last-child {
  margin-bottom: 0;
}

/* Signature */
.sambutan-signature-v2 {
  padding-top: 0.85rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
}

.sambutan-sig-avatar {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
}

.sambutan-sig-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.sambutan-sig-role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1px 0 0;
}

/* Dots */
.sambutan-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
}

.sambutan-dot-btn {
  height: 5px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.26, 0.64, 1);
  padding: 0;
  outline: none;
}

/* RIGHT: Photo Column */
.sambutan-right-col {
  position: relative;
  transition: opacity 0.5s, transform 0.5s;
  order: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

@media (min-width: 992px) {
  .sambutan-right-col {
    position: relative;
    transition: opacity 0.5s, transform 0.5s;
    order: 1;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
  }





  /* Decorative Photo Frame — Improved Reference Style */
  .sambutan-frame-bg1 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 75%;
    bottom: 20px;
    border-radius: 2rem;
    z-index: 0;
    transition: background 0.5s ease;
    opacity: 0.95;
  }

  .sambutan-frame-bg2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80%;
    top: 30px;
    border-radius: 2rem;
    z-index: 0;
    transition: background 0.5s ease;
  }

  .sambutan-frame-border {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 80%;
    aspect-ratio: 1 / 1;
    border-radius: 1.5rem;
    border: 3px solid;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    transition: border-color 0.5s ease;
  }

  .sambutan-frame-dot-bl {
    position: absolute;
    bottom: -14px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 4;
    transition: background 0.5s ease;
  }

  .sambutan-frame-pattern {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 40px;
    height: 40px;
    z-index: 1;
    transition: color 0.5s ease;
  }

  .sambutan-image-wrapper {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
      0 14px 28px rgba(15, 23, 42, 0.12),
      0 0 0 6px rgba(255, 255, 255, 0.95);
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    max-width: 260px;
    margin: 0 auto;
    z-index: 2;
  }

  .sambutan-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
  }

  .sambutan-right-col:hover .sambutan-main-img {
    transform: scale(1.05);
  }

  @media (min-width: 992px) {
    .sambutan-image-wrapper {
      max-width: none;
      margin: 0;
    }
  }

  @media (max-width: 991px) {
    .sambutan-right-col {
      position: relative;
      transition: opacity 0.5s, transform 0.5s;
      order: 1;
      padding: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 300px;
    }

    .sambutan-image-wrapper {
      max-width: 220px;
    }
  }

  /* ─── PENGUMUMAN SECTION ─── */
  .pengumuman-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 56px 0;
  }

  .pengumuman-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #0f172a;
  }

  .section-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }

  .bar-thick {
    height: 4px;
    border-radius: 999px;
  }

  .bar-thin {
    height: 4px;
    border-radius: 999px;
  }

  .pengumuman-list {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 3px 16px rgba(15, 23, 42, 0.06);
    overflow: hidden;
  }

  .pengumuman-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
    cursor: pointer;
  }

  .pengumuman-item:last-child {
    border-bottom: none;
  }

  .pengumuman-item:hover {
    background: #f8fafc;
  }

  @media (min-width: 640px) {
    .pengumuman-item {
      flex-direction: row;
      align-items: center;
      gap: 1rem;
    }
  }

  .pengumuman-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
  }

  @media (min-width: 640px) {
    .pengumuman-dot {
      margin-top: 0;
    }
  }

  .pengumuman-text {
    flex: 1;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.6;
  }

  .pengumuman-date {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 8px;
  }

  @media (min-width: 640px) {
    .pengumuman-date {
      padding: 4px 12px;
    }
  }

  .pengumuman-date-text {
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
  }

  /* ─── BERITA TERBARU SECTION (on Home) ─── */
  .berita-home-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 56px 0;
  }

  .berita-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 640px) {
    .berita-home-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 768px) {
    .berita-home-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .berita-card {
    background: #fff;
    border-radius: 1.1rem;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    transition: all 0.3s;
    display: block;
  }

  .berita-card:hover {
    box-shadow: 0 18px 48px rgba(37, 99, 235, 0.15);
  }

  .berita-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

  .berita-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .berita-card:hover .berita-card-img {
    transform: scale(1.10);
  }

  .berita-card-img-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.52) 0%, transparent 55%);
  }

  .berita-card-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #475569;
    font-weight: 600;
    backdrop-filter: blur(4px);
  }

  .berita-card-body {
    padding: 1.25rem;
  }

  .berita-card-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 8px;
    transition: color 0.2s;
  }

  .berita-card:hover .berita-card-title {
    color: #2563eb;
  }

  .berita-card-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.75;
  }

  .berita-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    padding-top: 12px;
    color: #f97316;
    font-weight: 700;
    font-size: 0.82rem;
  }

  .berita-card-top-bar {
    height: 5px;
  }

  /* ─── CTA SECTION ─── */
  .cta-section {
    background: linear-gradient(155deg, #1d4ed8 0%, #2563eb 55%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
  }

  .cta-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
  }

  .cta-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 10;
  }

  @media (min-width: 640px) {
    .cta-inner {
      padding: 3rem 1.5rem;
    }
  }

  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    margin-bottom: 12px;
  }

  .cta-badge-dot-wrap {
    position: relative;
    width: 8px;
    height: 8px;
  }

  .cta-badge-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
  }

  .cta-badge-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
  }

  .cta-badge-text {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
  }

  .cta-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
  }

  .cta-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
    position: relative;
  }

  @media (min-width: 640px) {
    .cta-steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .cta-connector {
    display: none;
    position: absolute;
    top: 44px;
    left: calc(16.67% + 28px);
    right: calc(16.67% + 28px);
    height: 2px;
    background: rgba(255, 255, 255, 0.28);
    pointer-events: none;
    z-index: 0;
  }

  @media (min-width: 640px) {
    .cta-connector {
      display: block;
    }
  }

  .cta-step-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.25s;
  }

  .cta-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  }

  .cta-step-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .cta-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cta-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-step-num span {
    font-size: 0.72rem;
    font-weight: 900;
    color: #fff;
  }

  .cta-step-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.92rem;
  }

  .cta-step-desc {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  @media (min-width: 640px) {
    .cta-actions {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
  }

  .cta-btn-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 1rem;
    background: #f97316;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 28px rgba(234, 88, 12, 0.48);
    transition: all 0.2s;
  }

  .cta-btn-orange:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(234, 88, 12, 0.60);
  }

  .cta-btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
  }

  .cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
  }
}