:root {
  --primary-blue: #0a2647;
  --accent-blue: #144272;
  --soft-blue: #e1e9f0;
  --eco-green: #20c997;
  --text-dark: #2d3436;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/bg-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  /* semakin kecil semakin samar */
  z-index: -1;
}

.feather {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.logo {
  height: 70px;
}

.img-icon {
  width: 100px;
}

a {
  text-decoration: none !important;
  color: none;
}

/* Navbar Customization */
.navbar {
  /* background: rgba(10, 38, 71, 0.95); */
  /* background-color: #fff; */
  /* backdrop-filter: blur(10px); */
  box-shadow: 0;
  padding: 15px 0;
  transition: 0.3s;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar.scrolled .nav-link {
  color: #333 !important;
}

.nav-link {
  color: var(--soft-blue);
  font-size: 14px;
  padding: 5px 12px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--eco-green);
}

.navbar .nav-link.active {
  color: var(--eco-green);
  font-weight: 600;
}

.dropdown-menu .nav-link {
  color: var(--text-dark);
}

/* .navbar-collapse {
    background: #fff;
    padding: 20px;
}

.navbar-collapse .nav-link {
    color: var(--text-dark);
    padding: 10px !important;
}
*/
.scrolled .navbar-toggler {
  background-color: var(--eco-green);
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a2647, rgb(20 66 114 / 84%));
    padding: 80px 30px;
    transition: 0.4s ease;
    z-index: 1050;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    text-align: left;
  }

  .navbar-nav .nav-link,
  .scrolled .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .navbar-collapse .dropdown-menu {
    background-color: transparent;
  }

  .navbar-collapse .align-items-center {
    align-items: unset !important;
  }

  .navbar-toggler {
    z-index: 1100;
    position: relative;
  }
}

.navbar-collapse.show .nav-link {
  animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Styling */
.hero {
  background: linear-gradient(135deg, var(--soft-blue) 0%, #ffffff 100%);
  padding: 160px 0 100px 0;
  min-height: 80vh;
  /* display: flex; */
  align-items: center;
}

.hero-title {
  font-weight: 800;
  color: var(--primary-blue);
  font-size: 3.5rem;
}

/* Icon Box / Service Card */
.icon-box {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--soft-blue);
  transition: 0.3s;
  height: 100%;
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 38, 71, 0.1);
  border-color: var(--eco-green);
}

.icon-box p {
  font-size: 14px;
}

.icon-visual {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

/* Character Animation */
.ganis-character {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.1));
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.footer {
  position: relative;
  background: var(--primary-blue);
  color: white;
  padding: 70px 0 30px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f172a, #020617);
  opacity: 0.9;
}

.footer-container {
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  height: 90px;
  object-fit: contain;
}

.footer-text p {
  opacity: 0.75;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 420px;
}

/* CONTACT */
.footer-contact {
  text-align: right;
}

.footer-contact p {
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-contact i {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* DIVIDER */
.footer-divider {
  margin: 30px 0 20px;
  opacity: 0.2;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* TABLET */
@media (max-width: 992px) {
  .footer-contact {
    text-align: left;
    margin-top: 20px;
  }

  .footer-brand {
    align-items: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    height: 70px;
  }

  .footer-text h4 {
    font-size: 18px;
  }

  .footer-text p {
    max-width: 100%;
  }

  .footer-contact {
    text-align: center;
  }
}

.btn-main {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-main:hover {
  background-color: var(--eco-green);
  color: white;
  transform: scale(1.05);
}

.hero-slide {
  height: 95vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide h1 {
  /* font-size: 35px; */
  font-weight: 700;
  max-width: 800px;
}

.hero-slide p {
  font-size: 18px;
  max-width: 800px;
}

/* Pastikan indicators di atas overlay */
.corporate-indicators {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
  /* HARUS lebih tinggi dari overlay */
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Button Reset */
.corporate-indicators button {
  position: relative;
  width: 260px;
  background: transparent !important;
  border: none;
  padding: 0;
  text-align: left;
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* Hilangkan style default bootstrap */
.carousel-indicators [data-bs-target] {
  width: auto;
  height: auto;
  text-indent: 0;
  background: none;
}

/* Number */
.indicator-number {
  font-size: 20px;
  font-weight: 700;
  color: #28a745;
}

/* Title */
.indicator-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  /* pastikan putih */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Content wrapper */
.indicator-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* Progress line */
.indicator-line {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.indicator-line::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 0%;
  background: #28a745;
}

.corporate-indicators button.active .indicator-line::after {
  animation: corporateProgress 5s linear forwards;
}

@keyframes corporateProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.hero-bread {
  background: linear-gradient(135deg, var(--soft-blue) 0%, #ffffff 100%);
  padding: 160px 0 100px 0;
  min-height: 50vh;
  /* display: flex; */
  align-items: center;
}

.hero-bread-slide {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

/* Background Section */
.our-value {
  /* background: #eaf4f7; */
}

/* Section Title */
.section-title {
  /* font-size: 42px; */
  font-weight: 700;
  /* letter-spacing: 3px; */
  color: #0b5e7a;
}

.section-subtitle {
  font-size: 18px;
  color: #0b5e7a;
  font-style: italic;
  margin-top: 10px;
}

/* ===============================
   CORE SERVICES SECTION
================================= */
.core-services {
  background: #eaf4f7;
}

/* Title */
.core-title {
  /* font-size: 35px; */
  font-weight: 800;
  color: #0b8f5a;
  line-height: 1.1;
}

/* Tagline */
.core-tagline {
  font-size: 20px;
  font-style: italic;
  color: #0b5e7a;
  margin: 20px 0;
}

/* Description */
.core-desc {
  font-size: 16px;
  color: #2c3e50;
  max-width: 500px;
}

/* Image circle */
.core-image-wrapper {
  width: 320px;
  height: 320px;
  margin: auto;
  border-radius: 50%;
  padding: 15px;
  background: linear-gradient(135deg, #0b5e7a, #00a86b);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.core-image-wrapper img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   SERVICE CARD
================================= */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Gradient hover overlay */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0b5e7a, #00a86b);
  opacity: 0;
  transition: 0.4s ease;
}

.service-card:hover::after {
  opacity: 0.05;
}

/* Icon */
.service-icon {
  font-size: 60px;
  color: #00a86b;
}

/* Content */
.service-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b5e7a;
}

.service-content p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .core-title {
    font-size: 36px;
  }

  .core-image-wrapper {
    width: 250px;
    height: 250px;
    margin-top: 30px;
  }
}

/* ===============================
   WHY TRUST SECTION
================================= */
.why-trust {
  position: relative;
  /* background: linear-gradient(135deg, #0b5e7a, #148bb0); */
  background-image: url("../images/image-2.jpg");
  color: #fff;
  overflow: hidden;
}

/* Subtle pattern overlay */
.why-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

/* Title */
.why-title {
  /* font-size: 35px; */
  font-weight: 800;
  line-height: 1.1;
}

/* Description */
.why-desc {
  margin-top: 20px;
  max-width: 480px;
  font-size: 16px;
  opacity: 0.9;
}

/* Image circle */
.why-image-wrapper {
  width: 320px;
  height: 320px;
  margin: auto;
  border-radius: 50%;
  padding: 15px;
  background: linear-gradient(135deg, #00a86b, #6dd5a3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ===============================
   TRUST CARDS
================================= */
.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

/* Hover premium effect */
.trust-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Floating label */
.trust-label {
  display: inline-block;
  background: #ffffff;
  color: #0b5e7a;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

/* Green version */
.trust-label.green {
  background: linear-gradient(135deg, #00a86b, #6dd5a3);
  color: #fff;
}

/* Text */
.trust-card p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
}

/* ================= PREMIUM STANDARD ================= */
.standard-premium {
  /* background: #f4f7fa; */
  padding-bottom: 80px;
}

/* ===== HEADER ===== */
.premium-header {
  padding: 100px 0 0;
}

.page-badge {
  display: inline-block;
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.premium-title {
  /* font-size: 2.8rem; */
  color: #1f2937;
}

.premium-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 25px 0;
  border-radius: 10px;
}

/* ===== IMAGE ===== */
.premium-thumbnail {
  margin-bottom: 60px;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.image-wrapper img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* ===== CONTENT CARD ===== */
.premium-content .content-card {
  background: #ffffff;
  padding: 70px;
  border-radius: 20px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.9;
  color: #374151;
}

/* Typography Styling */
.content-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111827;
}

.content-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.content-card p {
  margin-bottom: 0px;
}

/* Dropcap first paragraph */
/* .content-card p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    padding-right: 8px;
    color: #198754;
} */
/* Modern List */
.content-card ul {
  padding-left: 0;
  list-style: none;
}

.content-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.content-card ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #20c997;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Blockquote */
.content-card blockquote {
  border-left: 5px solid #198754;
  padding-left: 20px;
  margin: 10px 0;
  font-style: italic;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .premium-title {
    font-size: 2rem;
  }

  .premium-content .content-card {
    padding: 30px;
  }

  .premium-header {
    padding: 70px 0 40px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 34px;
  }

  .why-image-wrapper {
    width: 240px;
    height: 240px;
    margin-top: 30px;
  }
}

/* =========================
   RESPONSIVE ADJUSTMENT
========================= */
/* Tablet */
@media (max-width: 991.98px) {
  .our-value .value-item {
    padding: 22px;
  }

  .our-value .icon-box-our {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .our-value .icon-box-our .feather {
    width: 1.6rem !important;
    height: 1.6rem !important;
  }

  .our-value .value-name {
    font-size: 1.1rem;
  }

  .our-value .value-desc {
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .our-value .value-item {
    padding: 18px;
  }

  .our-value .icon-box-our {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
  }

  .our-value .icon-box-our .feather {
    width: 1.4rem !important;
    height: 1.4rem !important;
  }

  .our-value .value-name {
    font-size: 1.05rem;
  }

  .our-value .value-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .our-value .value-footer {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* Extra Small (HP kecil) */
@media (max-width: 575.98px) {
  .our-value .value-item {
    padding: 15px;
  }

  .our-value .icon-box-our {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .our-value .icon-box-our .feather {
    width: 1.2rem !important;
    height: 1.2rem !important;
  }
}

/* ================= NEWS SECTION ================= */
.news-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.news-header {
  margin-bottom: 50px;
}

.news-title {
  font-size: 2rem;
  font-weight: 700;
}

.news-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 15px auto 0;
  border-radius: 10px;
}

/* ================= CARD ================= */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Image */
.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-placeholder {
  background: #e9ecef;
  height: 100%;
}

/* Content */
.news-content {
  padding: 20px;
}

.news-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.news-excerpt {
  font-size: 0.9rem;
  color: #6c757d;
}

.content-card img {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .news-image {
    height: 180px;
  }
}

/* SECTION */
.our-value-section {
  padding: 100px 0;
  /* background: #ffffff; */
  background: url("../images/project-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.our-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 225, 225, 0.178);
}

/* BADGE */
.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #198754;
  margin-bottom: 10px;
}

/* TITLE */
.section-title {
  font-size: 30px;
  font-weight: 700;
  /* color: #1b3c36; */
  line-height: 1.3;
}

.section-title span {
  color: #198754;
}

/* LINE */
.title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 18px 0 20px;
  border-radius: 3px;
}

/* SUBTITLE */
.section-subtitle {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* FOOTER */
.value-footer {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
}

/* VALUE LIST */
.our-value .value-item {
  background: #f8f9f6;
  border-radius: 18px;
  padding: 20px 25px;
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid #edf1ee;
}

/* ACCENT LINE */
.our-value .value-item {
  overflow: hidden;
}

.our-value .value-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#198754, #20c997);
}

/* HOVER */
.our-value .value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.value-name {
  font-size: 22px;
  font-weight: 700;
  color: #1b3c36;
  margin-bottom: 0px;
}

/* DESC */
.value-desc {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
}

/* ICON */
.icon-box-our {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(25, 135, 84, 0.25);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.icon-box-our svg {
  width: 26px;
  height: 26px;
  color: #198754;
}

/* ICON HOVER */
.value-item:hover .icon-box-our {
  transform: scale(1.08);
  border-color: #198754;
}

.value-intro-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-width: 520px;
  margin: auto;
  position: relative;
}

/* decorative background */
.value-intro-card::before {
  content: "";
  position: absolute;
  width: clamp(70px, 10vw, 120px);
  height: clamp(70px, 10vw, 120px);
  background: linear-gradient(135deg, #198754, #20c997);
  opacity: 0.08;
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

.value-intro-card {
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #198754;
  background: rgba(25, 135, 84, 0.1);
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 25px;
}

/* CARD */
.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

/* IMAGE */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER ZOOM */
.product-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: white;
}

/* TEXT */
.product-content h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.product-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* =========================
   GRID VARIATION (5 ITEMS)
========================= */
/* CARD 1 BESAR (tengah tinggi) */
.product-card:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

/* CARD 2 LEBAR ATAS */
.product-card:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

/* CARD 3 KOTAK */
.product-card:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

/* CARD 4 KOTAK */
.product-card:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

/* CARD 5 LEBAR BAWAH */
.product-card:nth-child(5) {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* .breadcrumb-content {
    background-color: var(--primary-blue);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    margin-right: -15px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
} */
/* SECTION BACKGROUND */
.premium-content {
  position: relative;
}

.content-card {
  background: #ffffffd9;
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* META */
.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #6c757d;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-divider {
  width: 1px;
  height: 16px;
  background: #ddd;
}

/* CONTENT */
.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.post-content p {
  margin-bottom: 18px;
}

/* IMAGE */
.post-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);*/
}

.post-image-wrapper img {
  width: 100%;
  height: auto;
  transition: 0.4s;
}

.post-image-wrapper:hover img {
  transform: scale(1.05);
}

/* STICKY IMAGE */
.sticky-image {
  position: sticky;
  top: 120px;
}

/* DIVIDER */
.soft-divider {
  opacity: 0.2;
  margin: 25px 0;
}