@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --primary: #001f3e;
  --bg: white;
  --secondary: #d0b669;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--primary);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--secondary);

  padding: 15px 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li img {
  width: 150px;
}

.nav-links li a:hover {
  color: var(--primary);
}
.highlight-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: black;
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  margin: 10px;
  gap: 10px;
  overflow: hidden;
}

.highlight-label {
  background: transparent;
  color: var(--secondary);
  font-weight: bold;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
}

.highlight-text {
  flex: 1;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Lato", sans-serif;
}
.highlight-track {
  display: inline-block;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.highlight-track a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 500;
  font-size: 20px;
  font-family: "Lato", sans-serif;
}

.highlight-track a:hover {
  color: var(--secondary);
}
.footer {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 40px 20px;
}
.center {
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-footer img {
  height: 50px;
}

.footer h3 {
  margin: 0;
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

.footer p {
  font-size: 14px;
  margin: 5px 0;
  color: var(--primary);
  font-family: "Lato", sans-serif;
}

.social-icons-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.social-icons-footer img {
  width: 30px;
  height: 30px;
}

.map-container {
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.container-utama {
  max-width: 850px;
  margin: auto;
  padding: 20px;
  background-color: white;
}
.breadcrumb-utama {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 15px;
}

.breadcrumb-utama a {
  color: black;
  font-family: "made-me", sans-serif;
  font-weight: bold;
}

.title-utama {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
  color: var(--primary);
  font-family: "made-me";
  font-weight: 700;
  font-style: normal;
}
.source-utama {
  color: black;
  font-weight: bold;
  font-size: 16px;
}

.date-utama {
  font-size: 13px;
  color: black;
  margin-bottom: 20px;
  font-family: "Lato";
  font-weight: bold;
}

.share-utama {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: black;
  font-family: "Lato";
  font-weight: bold;
}

.share-utama img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.share-utama img:hover {
  transform: scale(1.1);
}
.image-wrapper-utama {
  margin-bottom: 20px;
}

.image-wrapper-utama img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
}
.caption-utama {
  font-size: 13px;
  color: black;
  margin-top: 8px;
  font-family: "Lato";
  font-weight: bold;
}
.copy-message {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0a1f44;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.news-utama {
  margin-bottom: 20px;
}

.news-utama p {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "Lato";
  font-weight: bold;
}

.highlight-utama {
  color: var(--primary);
  font-weight: bold;
}
p {
  color: black;
}

@font-face {
  font-family: "made-me";
  src: url("../font/made.ttf");
  font-weight: normal;
  font-style: normal;
}
/* @media (max-width: 900px) {
} */
.proof-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background:
    white
}

.proof-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -180px;
  border-radius: 50%;
  background: white;
  filter: blur(20px);
}

.proof-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-header {
  max-width: 720px;
  margin-bottom: 52px;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #4f46e5;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.proof-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.proof-header h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: #0f172a;
}

.proof-header p {
  max-width: 580px;
  margin: 18px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 22px;
}

.proof-item {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.proof-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
}

.proof-featured {
  grid-row: span 2;
}

.tall {
  grid-row: span 2;
}

.small-video {
  grid-column: span 2;
}

.proof-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proof-image:hover img {
  transform: scale(1.08);
}

.proof-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.86),
    rgba(30, 41, 59, 0.62)
  );
  backdrop-filter: blur(14px);
}

.proof-overlay span,
.proof-content span {
  display: inline-block;
  margin-bottom: 8px;
  color: #c7d2fe;
  font-size: 13px;
  font-weight: 700;
}

.proof-overlay h3,
.proof-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.proof-video {
  display: flex;
  flex-direction: column;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.proof-featured .video-wrapper {
  flex: 1;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.proof-content {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
}

.proof-content p {
  margin: 12px 0 0;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 15px;
}
@media (max-width: 992px) {
  .proof-section {
    padding: 85px 20px;
  }

  .proof-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .proof-header h2,
  .proof-header p {
    margin-left: auto;
    margin-right: auto;
  }

  .proof-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .proof-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .tall {
    grid-row: span 1;
  }

  .small-video {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .proof-section {
    padding: 75px 18px;
  }

  .proof-header {
    margin-bottom: 38px;
  }

  .proof-header h2 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .proof-header p {
    font-size: 16px;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }

  .proof-featured,
  .tall,
  .small-video {
    grid-column: span 1;
    grid-row: span 1;
  }

  .proof-image {
    height: 360px;
  }

  .proof-item {
    border-radius: 26px;
  }

  .proof-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 20px;
  }

  .proof-content {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .proof-section {
    padding: 60px 14px;
  }

  .proof-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .proof-header h2 {
    font-size: 31px;
  }

  .proof-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .proof-layout {
    gap: 16px;
  }

  .proof-item {
    border-radius: 22px;
  }

  .proof-image {
    height: 280px;
  }

  .proof-overlay {
    padding: 15px;
    border-radius: 18px;
  }

  .proof-overlay h3,
  .proof-content h3 {
    font-size: 18px;
  }

  .proof-overlay span,
  .proof-content span {
    font-size: 12px;
  }

  .proof-content {
    padding: 18px;
  }

  .proof-content p {
    font-size: 14px;
  }

  .video-wrapper {
    aspect-ratio: 16 / 10;
  }
}