/* ====== GLOBAL ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Abel', sans-serif;
  background: #f9f9f9;
  color: #222;
  overflow-x: hidden;
}

/* ====== NAVBAR ====== */
.suhutama-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.suhutama-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ====== LOGO SLOT ====== */
.suhutama-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suhutama-logo-img {
  height: 65px; /* ubah sesuai ukuran logomu */
  width: auto;
  object-fit: contain;
}

.suhutama-logo-text {
  font-size: 1.7rem;
  font-weight: bold;
  color: #1e1e1e;
  letter-spacing: 1px;
}

/* ====== HAMBURGER ====== */
.suhutama-hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  transition: 0.3s;
}

.suhutama-hamburger span {
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}

/* Transform jadi X */
.suhutama-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.suhutama-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.suhutama-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ====== MENU SLIDE ====== */
.suhutama-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 15px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suhutama-nav.active {
  right: 0;
}

.suhutama-nav ul {
  list-style: none;
  text-align: center;
}

.suhutama-nav ul li {
  margin: 20px 0;
}

.suhutama-nav ul li a {
  color: #222;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.3s;
}

.suhutama-nav ul li a:hover {
  color: #0078ff;
}

/* ====== DESKTOP ====== */
@media (min-width: 768px) {
  .suhutama-hamburger {
    display: none;
  }

  .suhutama-nav {
    position: static;
    width: auto;
    height: auto;
    box-shadow: none;
    display: block;
    background: none;
  }

  .suhutama-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .suhutama-nav ul li {
    margin: 0;
  }
}
/* ====== HERO ====== */
.suhutama-hero {
  position: relative;
  height: 100vh;
  background: url("../img/hero-suhutama.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.suhutama-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.suhutama-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.suhutama-hero-title {
  font-family: 'Abel', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.45);
  letter-spacing: 0.5px;
}

.suhutama-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #f0f0f0;
  margin-bottom: 40px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.suhutama-cta {
  display: inline-block;
  background: #1e3a8a;
  border: solid 2px #1e3a8a;
  font-size: 1.2rem;
  color: #fff;
  padding: 12px 55px;
  margin: 5px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.suhutama-cta2 {
  display: inline-block;
  background: transparent;
  border: solid 2px white;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 65px;
  margin: 5px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.suhutama-cta:hover {
  background: #2c4fb3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .suhutama-hero-title {
    font-size: 2.1rem;
  }
  .suhutama-hero-subtitle {
    font-size: 1.3rem;
  }
}

/* SECTION PRODUK & SOLUSI UTAMA */
.suhutama-products {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.suhutama-products-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.suhutama-products-header h2 {
  font-family: 'Abel', sans-serif;
  font-size: 2rem;
  color: #1a2a5c;
  margin-bottom: 15px;
}

.suhutama-products-header p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.5;
}

.suhutama-product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.suhutama-product-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suhutama-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.suhutama-product-card img {
  width: 80%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.suhutama-product-card h3 {
  font-family: 'Abel', sans-serif;
  color: #1a2a5c;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.suhutama-product-card p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .suhutama-products {
    padding: 60px 15px;
  }

  .suhutama-products-header h2 {
    font-size: 1.6rem;
  }

  .suhutama-product-card {
    padding: 25px 20px;
  }

  .suhutama-product-card img {
    width: 90%;
    height: auto;
    border-radius: 10px;
  }
}

/* ===============================
   SUHUTAMA WHY CHOOSE US (ALT)
================================*/
.suhutama-whyus-alt {
  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
}

.suhutama-whyus-alt-header {
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.suhutama-whyus-alt-header h2 {
  font-family: 'Abel', sans-serif;
  font-size: 2.2rem;
  color: #1a2a5c;
  margin-bottom: 15px;
}

.suhutama-whyus-alt-header h2 span {
  color: #2448b8;
}

.suhutama-whyus-alt-header p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.5;
}

.suhutama-whyus-alt-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.suhutama-whyus-alt-card {
  flex: 1 1 250px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 45px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.suhutama-whyus-alt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.suhutama-whyus-alt-card i {
  font-size: 3rem;
  color: #2448b8;
  margin-bottom: 20px;
}

.suhutama-whyus-alt-card h3 {
  font-family: 'Abel', sans-serif;
  font-size: 1.3rem;
  color: #1a2a5c;
  margin-bottom: 10px;
}

.suhutama-whyus-alt-card p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .suhutama-whyus-alt {
    padding: 70px 15px;
  }

  .suhutama-whyus-alt-header h2 {
    font-size: 1.8rem;
  }

  .suhutama-whyus-alt-card {
    padding: 35px 20px;
  }

  .suhutama-whyus-alt-card i {
    font-size: 2.5rem;
  }
}

/* === SUHUTAMA APLIKASI & INDUSTRI === */
.suhutama-apps {
  font-family: "Abel", sans-serif;
  overflow-x: hidden;
}

/* Header full lebar */
.suhutama-apps-header {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-image: url('../img/aplikasi-industri-suhutama.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.suhutama-apps-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.suhutama-apps-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.suhutama-apps-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.suhutama-apps-header p {
  font-size: 1.2rem;
  color: #eaeaea;
}

/* Konten utama */
.suhutama-apps-container {
  background: #f8f9fa;
  padding: 70px 20px;
}

.suhutama-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card biru lembut khas Suhutama */
.suhutama-apps-card {
  background: #2b6cb0; /* biru lembut elegan */
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
}

.suhutama-apps-card:hover {
  transform: translateY(-6px);
  background: #357fd1; /* sedikit lebih terang saat hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.suhutama-apps-card i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.suhutama-apps-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.suhutama-apps-card p {
  font-size: 1.2rem;
  color: #f0f0f0;
}

/* Responsif */
@media (max-width: 768px) {
  .suhutama-apps-header {
    padding: 60px 15px;
  }
  .suhutama-apps-header h2 {
    font-size: 1.8rem;
  }
  .suhutama-apps-header p {
    font-size: 1.2rem;
  }
}

/* === SUHUTAMA VIDEO SECTION === */
.suhutama-videos {
  font-family: "Abel", sans-serif;
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.suhutama-videos-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.suhutama-videos-header h2 {
  font-size: 2rem;
  color: #1e5fa4;
  margin-bottom: 10px;
}

.suhutama-videos-header p {
  color: #555;
  font-size: 1rem;
}

/* Video utama */
.suhutama-main-video {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.suhutama-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* rasio 16:9 */
}

.suhutama-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Playlist grid */
.suhutama-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di semua ukuran */
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.suhutama-video-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #333;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .suhutama-video-grid {
    grid-template-columns: repeat(2, 1fr); /* tetap 2 di HP */
    gap: 12px;
  }

  .suhutama-videos {
    padding: 60px 10px;
  }

  .suhutama-videos-header h2 {
    font-size: 1.6rem;
  }

  .suhutama-video-item p {
    font-size: 0.85rem;
  }
}

/* ===== GALERI VIDEO (YOUTUBE IFRAME) ===== */
.pdn-video-gallery {
  background: #001f3f;
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.pdn-video-gallery .pdn-section-title {
  color: #fff;
}

.pdn-video-gallery .pdn-section-subtitle {
  color: #d1d1d1;
  margin-bottom: 2rem;
}

.pdn-video-wrapper {
  max-width: 1000px;
  margin: auto;
}

.pdn-main-video iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 2rem;
}

/* PLAYLIST GRID */
.pdn-video-playlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.pdn-video-item {
  background: #00264d;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  width: 100%;
  max-width: 230px;
}

.pdn-video-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.pdn-video-item p {
  margin: 0;
  padding: 0.7rem;
  font-size: 0.95rem;
  background: rgba(0,0,0,0.3);
}

.pdn-video-item:hover {
  transform: translateY(-5px);
  background: #003366;
}

.pdn-video-item.active {
  border: 2px solid #66aaff;
  box-shadow: 0 0 10px rgba(102,170,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pdn-main-video iframe {
    height: 230px;
  }
  .pdn-video-playlist {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .pdn-video-item {
    max-width: 100%;
  }
}

/* === SUHUTAMA JUMBOTRON === */
.suhutama-jumbotron {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-image: linear-gradient(rgba(0, 40, 90, 0.7), rgba(0, 40, 90, 0.7)),
                    url('../img/tim-suhutama.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.suhutama-jumbotron-content {
  max-width: 750px;
  margin: 0 auto;
}

.suhutama-jumbotron h2 {
  font-family: "Abel", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.suhutama-jumbotron p {
  font-family: "Abel", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f1f1;
}

.suhutama-cta-btn {
  display: inline-block;
  background-color: #1e5fa4;
  color: #fff;
  font-family: "Abel", sans-serif;
  padding: 14px 38px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.suhutama-cta-btn:hover {
  background-color: #164b82;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .suhutama-jumbotron {
    padding: 80px 20px;
  }

  .suhutama-jumbotron h2 {
    font-size: 1.8rem;
  }

  .suhutama-jumbotron p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .suhutama-jumbotron {
    padding: 70px 15px;
  }

  .suhutama-jumbotron h2 {
    font-size: 1.5rem;
  }

  .suhutama-cta-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

.pdn-logo-marquee {
  overflow: hidden;
  background: #f8f9fa;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.pdn-logo-track {
  display: flex;
  gap: 80px;
  will-change: transform;
}

.pdn-logo-track img {
  height: 60px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .pdn-logo-track {
    gap: 40px;
  }

  .pdn-logo-track img {
    height: 45px;
  }
}
/* Section dasar */
.pdn-marquee {
  overflow: hidden;
  background: #f8f9fa;
  padding: 25px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Jalur marquee */
.pdn-marquee-content {
  display: inline-flex;
  animation: pdn-marquee-move 18s linear infinite;
}

/* Logo */
.pdn-marquee-content img {
  height: 60px;
  margin: 0 40px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* Efek bergerak tanpa henti */
@keyframes pdn-marquee-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .pdn-marquee-content img {
    height: 45px;
    margin: 0 25px;
  }
}

.pdn-faq {
  background: #ffffff;
  padding: 60px 20px;
}

.pdn-faq-container {
  max-width: 900px;
  margin: auto;
}

.pdn-faq-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 40px;
}

.pdn-faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.pdn-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #003366;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s ease;
}

.pdn-faq-question:hover {
  color: #0056b3;
}

.pdn-faq-answer {
  display: none;
  padding: 0 0 15px 0;
  font-size: 1.3rem;
  color: #444;
  line-height: 1.6;
}

.pdn-faq-item.active .pdn-faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .pdn-faq-title {
    font-size: 1.8rem;
  }

  .pdn-faq-question {
    font-size: 1.2rem;
  }
}


.pdn-article-suhutama {
  background-color: #e8f2ff; /* biru muda lembut */
  padding: 60px 20px;
  text-align: center;
}

.pdn-article-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pdn-article-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #1a3a6f;
}

.pdn-article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .pdn-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pdn-article-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Fade-in animation --- */
@keyframes pdnFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pdn-article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: pdnFadeIn 0.6s ease forwards;
  transition: transform 0.3s ease;
}

.pdn-article-card:hover {
  transform: translateY(-5px);
}

.pdn-article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pdn-article-content {
  padding: 15px;
  text-align: left;
}

.pdn-article-content h3 {
  font-size: 1.3rem;
  color: #133b7a;
  margin-bottom: 10px;
}

.pdn-article-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

.pdn-readmore {
  display: inline-block;
  color: white;
  background-color: #1a73e8;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.pdn-readmore:hover {
  background-color: #155ac4;
}

.pdn-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.pdn-pagination button {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

.pdn-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdn-pagination span {
  background: white;
  padding: 8px 12px;
  margin: 3px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer;
}

.pdn-pagination span.active {
  background: #1a73e8;
  color: white;
}

/* ===============================
   ARTIKEL FULL – SUHUTAMA
   =============================== */
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

/* Wrapper */
.read-suhutama-article {
  background: #ffffff;
  padding: 90px 0 60px;
  font-family: 'Abel', sans-serif;
  margin-top: 40px;
}

/* Container */
.read-suhutama-container {
  width: 92%;
  max-width: 880px;
  margin: auto;
}

/* Breadcrumb */
.read-suhutama-breadcrumbs {
  font-size: 14px;
  margin-bottom: 22px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.read-suhutama-breadcrumbs a {
  color: #444;
  text-decoration: none;
  transition: 0.2s ease;
}
.read-suhutama-breadcrumbs a:hover {
  color: #000;
}

/* Judul Artikel */
.read-suhutama-title {
  font-size: 36px;
  line-height: 1.3;
  color: #222;
  margin-bottom: 25px;
  letter-spacing: 0.3px;
}

/* Gambar Artikel */
.read-suhutama-cover {
  margin-bottom: 35px;
}
.read-suhutama-cover img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: block;
}
.read-suhutama-cover figcaption {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  color: #666;
  opacity: 0.75;
}

/* Konten Artikel */
.read-suhutama-content p {
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 22px;
  color: #333;
}

/* Spasi Heading dalam Artikel */
.read-suhutama-content h2,
.read-suhutama-content h3 {
  margin-top: 40px;
  margin-bottom: 18px;
  color: #222;
  letter-spacing: 0.3px;
}

/* List */
.read-suhutama-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.read-suhutama-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}



/* ===============================
   ARTIKEL TERKAIT – SUHUTAMA
   =============================== */

.read-suhutama-related {
  margin-top: 60px;
  padding: 50px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.read-suhutama-related-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.read-suhutama-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.read-suhutama-related-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.read-suhutama-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  border-color: #ddd;
}

.read-suhutama-related-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.45;
  color: #3399ff;
}

.read-suhutama-related-more {
  font-size: 14px;
  opacity: 0.7;
  transition: 0.2s;
}

.read-suhutama-related-card:hover .read-suhutama-related-more {
  opacity: 1;
}
/* ===============================
   ARTIKEL SHARE – SUHUTAMA
   =============================== */
.suhu-share {
    text-align: center;
    margin: 30px auto 10px;
    padding: 0 10px;
}

.suhu-share h2 {
    font-family: 'Abel', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.suhu-share-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.suhu-share-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.suhu-share-btn:hover {
    background: #eaeaea;
    transform: translateY(-3px);
}

.suhu-share-btn img {
    width: 20px;
    height: 20px;
}

/* ===========================
   SUHUTAMA HOMEPAGE FOOTER
   Premium & Professional
   Selector: .suhutama-footer-*
   =========================== */

.suhutama-footer {
  background: #0f172a;
  color: #e2e8f0;
  font-family: "Abel", sans-serif;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.suhutama-footer-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 0 20px;
}

.suhutama-footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f8fafc;
}

.suhutama-footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.suhutama-footer-col p {
  line-height: 1.6;
  font-size: 17px;
}

.suhutama-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suhutama-footer-col ul li {
  margin-bottom: 10px;
}

.suhutama-footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
  font-size: 17px;
}

.suhutama-footer-col ul li a:hover {
  color: #ffffff;
}

/* Kontak */
.suhutama-footer-col.contact p a {
  color: #cbd5e1;
}

.suhutama-footer-col.contact p a:hover {
  color: #fff;
}

/* Bottom */
.suhutama-footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}

.suhutama-footer-bottom p {
  font-size: 14px;
  color: #94a3b8;
}
/* SLOT LOGO SUHUTAMA */
.suhutama-footer-brand {
  text-align: center;
}

.suhutama-footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 2px solid #333;
}

/* Responsive */
@media (max-width: 900px) {
  .suhutama-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .suhutama-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

.sht-about * {
  font-family: 'Abel', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sht-about {
  width: 100%;
  display: block;
  color: #222;
}

/* HERO */
.sht-about-hero {
  position: relative;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.sht-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.sht-about-hero-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: 90%;
}

.sht-about-hero-content h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 12px;
}

.sht-about-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}


/* CONTAINER */
.sht-about-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* INTRO */
.sht-about-intro h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.sht-about-intro p {
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 18px;
  color: #444;
}

/* VALUES */
.sht-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.sht-about-value-item {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ececec;
  transition: 0.3s;
}

.sht-about-value-item:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.sht-about-value-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sht-about-value-item p {
  font-size: 17px;
  color: #555;
  line-height: 1.5;
}


/* VISI MISI */
.sht-about-visimisi {
  margin-top: 60px;
}

.sht-about-visimisi h2 {
  font-size: 30px;
  margin-bottom: 28px;
}

.sht-about-visi h3,
.sht-about-misi h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.sht-about-misi ul {
  padding-left: 20px;
  line-height: 1.6;
}

.sht-about-misi li {
  margin-bottom: 8px;
  font-size: 17px;
}


/* ====== BASE WRAPPER ====== */
.suhutama-contact {
  font-family: 'Abel', sans-serif;
  margin-top: 100px;
  color: #1b1b1b;
}

/* ====== HERO ====== */
.suhutama-contact-hero {
  position: relative;
  background: url('../img/kontak-kami.webp') center/cover no-repeat;
  padding: 80px 20px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 50px;
}

.suhutama-contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.suhutama-contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: auto;
  color: #fff;
}

.suhutama-contact-hero-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 700;
}

.suhutama-contact-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ====== GRID ====== */
.suhutama-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.suhutama-contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.suhutama-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
}

/* ====== ICON ====== */
.suhutama-contact-icon {
  font-size: 40px;
  color: #005eff;
  margin-bottom: 15px;
}

.suhutama-contact-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.suhutama-contact-card p {
  font-size: 18px;
  margin: 5px 0;
}

.suhutama-contact-card p a {
  text-decoration: none;
  color: #005eff;
  font-weight: 700;
}

.suhutama-contact-card span {
  font-size: 16px;
  opacity: 0.8;
}

/* ====== CTA ====== */
.suhutama-contact-cta {
  text-align: center;
  margin: 40px 0;
}

.suhutama-contact-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 20px;
  border-radius: 50px;
  background: #005eff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.suhutama-contact-btn:hover {
  background: #003ebd;
}





.pdn-article-card {
  position: relative;
}

.pdn-article-content {
  position: relative;
  z-index: 2;
}

.pdn-article-title {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

.pdn-article-title:hover {
  text-decoration: underline;
}







.suhutama-video-premium {
  max-width: 100%;
  margin: 48px 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #0e0e0e;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.suhutama-video-premium::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.video-cover,
.suhutama-video-premium iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.25);
  cursor: pointer;
}

.video-play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* ===============================
   PRODUCT SECTION – COLD STORAGE
================================ */

.product-detail {
  padding: 32px 16px;
  margin-top: 5rem;
}

.product-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.product-media {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  display: block;
}

.product-body {
  margin-top: 20px;
}

.product-name {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price {
  margin-bottom: 22px;
}

.price-label {
  display: block;
  font-size: 14px;
  color: #777;
}

.price-value {
  font-size: 22px;
  font-weight: 600;
}

.product-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 15px;
}

.tab.active {
  background: #111;
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel ul {
  padding-left: 18px;
  font-size: 17px;
}

.btn-wa {
  display: block;
  margin-top: 26px;
  background: #1dbf73;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}

.related-article-suhutama-fix {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.related-article-suhutama-fix h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.related-article-suhutama-fix .related-article-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-article-suhutama-fix .related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  transition: background 0.2s ease, transform 0.15s ease;
}

.related-article-suhutama-fix .related-item:hover {
  background: #eef2f7;
  transform: translateX(3px);
}

.related-article-suhutama-fix .related-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.related-article-suhutama-fix .related-item span {
  font-size: 17px;
  color: #1a75ff;
  line-height: 1.4;
  font-weight: bold;
}

/* Desktop enhancement */
@media (min-width: 768px) {
  .related-article-suhutama-fix .related-article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}


