/* =================================
   RESET & BASE STYLES
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

/* welcome buttons */
.welcome-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start; /* Default: rata kiri untuk desktop/iPad */
  padding-top: 20px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.welcome .btn {
  background: #1e3a8a;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  white-space: nowrap;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.welcome .btn:hover {
  background: #ff7a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.3);
}

/* Responsive untuk tablet */
@media (max-width: 1024px) and (min-width: 768px) {
  .welcome-buttons {
    gap: 12px;
  }
  
  .welcome .btn {
    font-size: 0.75rem;
    padding: 9px 18px;
  }
}

/* Responsive untuk mobile - akan di-override oleh inline style di produksi.html */
@media (max-width: 767px) {
  .welcome-buttons {
    gap: 10px;
    padding: 20px 10px 0 10px;
    justify-content: center; /* Center untuk mobile */
  }
  
  .welcome .btn {
    flex: 0 1 calc(50% - 5px);
    font-size: 0.7rem;
    padding: 10px 8px;
    white-space: normal;
    line-height: 1.3;
    min-height: 42px;
  }
}

/* =================================
  Produksi
================================= */

.produksi {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 8% 20px 8%;
  box-sizing: border-box;
  width: 100%;
}

/* Responsive produksi untuk layar besar */
@media (min-width: 1400px) {
  .produksi {
    max-width: 1400px;
  }
}

@media (min-width: 1600px) {
  .produksi {
    max-width: 1600px;
  }
}

@media (min-width: 1920px) {
  .produksi {
    max-width: 1800px;
  }
}

.col-img img {
  max-width: 50%;
  height: auto;
}

/* Main Grid Container */
.main-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
  margin-bottom: 5px;
  overflow: visible;
  justify-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Card Styles */
.system-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 102, 0, 0.1);
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 500px;
  min-height: 180px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: all 0.3s ease;
}

.system-card.dropdown-active {
  z-index: 99 !important;
}

.system-card:hover::before {
  background: linear-gradient(90deg, #ff6600, #ff8533);
}

.system-card:hover {
  transform: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.card-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f3f4;
  overflow: visible;
  min-height: 100px;
}

.card-header img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.card-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 70px;
}

.text-box h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 25px;
  font-weight: 700;
}

.text-box p {
  font-size: 0.8rem;
  color: #666;
  text-align: justify;
}
.card-title h3 {
  font-size: 0.8rem;
  color: #003366;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-title p {
  font-size: 0.6rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.dropdown {
  position: relative;
  overflow: visible;
  z-index: 100;
  align-self: flex-start;
}

.card-header .dropdown .dropdown-toggle {
  background: rgba(255, 102, 0, 0.1);
  border: 2px solid rgba(255, 102, 0, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-toggle:hover {
  background: rgba(255, 102, 0, 0.2);
  transform: none;
}

.dropdown-toggle i {
  color: #ff6600;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  content: none !important;
  border: none !important;
}

.dropdown-content {
  position: absolute;
  top: 55px;
  right: 0;
  background: white;
  min-width: 220px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 15px 20px;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
  color: #ff6600;
  padding-left: 25px;
}

.special-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.special-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 5px solid #28a745;
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-left-color: #ff6600;
}

.special-card img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 15px;
  padding: 12px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  flex-shrink: 0;
}

.special-card-content {
  flex: 1;
}

.special-card-content a {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #003366;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.special-card-content a:hover {
  color: #ff6600;
}

.p-Lainnya {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
/* Button */
button {
  margin: 20px;
}
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* =================================
  Pilar section
================================= */
:root {
  --orange: #f78b1f;
  --darkorange: #e27610;
  --white: #fff;
  --thumb: #eee;
}

/* Kontainer utama */
.cards-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 8%;
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.cards-container h1 {
  padding-top: 80px;
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

.cards-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 5px 30px 5px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
  margin: 0 -5px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.cards-scroll::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(4, 20, 30, 0.08);
  padding: 18px;
  scroll-snap-align: start;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  margin: 5px;
}

.card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.3);
  transition: all 0.3s ease;
}

.card:hover h2 {
  color: #fff;
}

/* Konten kartu */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #073049;
}

/* Gambar besar */
.card img {
  width: 90px;
  height: auto;
  margin: 6px auto 12px;
  display: block;
}

.card-content img {
  width: 90px;
  height: auto;
  margin: 6px auto 12px;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Tombol */
.card-link {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card:hover .card-link {
  background: var(--darkorange);
}

.scroll-btn {
  background: linear-gradient(90deg, #ff7a00, #ffae42);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.scroll-btn:hover {
  background: linear-gradient(90deg, #ffae42, #ffd580);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.3);
}

/* Responsif untuk card scroll */
@media (max-width: 768px) {
  .cards-container {
    padding: 30px 4% !important; /* Padding kiri-kanan konsisten */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .cards-scroll {
    gap: 14px;
    padding: 12px 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .card {
    flex: 0 0 calc((100% - 14px) / 2);
    min-height: 220px;
    padding: 18px;
    box-sizing: border-box !important;
  }
  .card img,
  .card-content img {
    width: 84px;
  }
  .card-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cards-container {
    padding: 30px 3% !important; /* Padding kiri-kanan konsisten dengan system-card */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .cards-scroll {
    gap: 10px;
    padding: 10px 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .card {
    flex: 0 0 calc((100% - 10px) / 2);
    min-height: 200px;
    padding: 14px;
    border-radius: 14px;
    box-sizing: border-box !important;
  }
  .card img,
  .card-content img {
    width: 72px;
  }
  .card-title {
    font-size: 0.98rem;
  }
}

/* =================================
   STRUKTUR ANGGOTA
================================= */

.struktur .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  margin-left: 500px;
}
.flip-card {
  background-color: transparent;
  width: 190px;
  height: 320px;
  perspective: 1000px;
  font-family: sans-serif;
}
.title {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 0;
  color: white;
}
.struktur p {
  color: white;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid coral;
  border-radius: 1rem;
}

.flip-card-front {
  color: white;
}
.flip-card-front img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-card-back {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.6), rgba(0, 255, 217, 0.6));
  color: rgba(255, 102, 0, 0.6);
  transform: rotateY(180deg);
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.stat-card i {
  font-size: 3.5rem;
  color: rgba(255, 102, 0, 0.6);
  margin-bottom: 18px;
}

.stat-card-content {
  flex: 1;
}

.stat-card h3 {
  font-size: 1.7rem;
  color: #003366;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-card p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}

/* Responsive untuk mobile */
@media (max-width: 700px) {
  .stats {
    gap: 20px;
  }
  .stat-card {
    min-width: 90vw;
    max-width: 90vw;
    min-height: 220px;
    max-height: 220px;
    padding: 20px;
  }
  .stat-card i {
    font-size: 2.2rem;
  }
  .stat-card h3 {
    font-size: 1.2rem;
  }
  .stat-card p {
    font-size: 0.95rem;
  }
}

/* =================================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #003366;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    background: rgba(0, 51, 102, 0.95);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    padding: 0;
    margin: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;
  }

  .dropdown-menu a {
    color: #ccc !important;
    padding: 10px 30px;
    border-left: 3px solid transparent;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600 !important;
    border-left-color: #ff6600;
    padding-left: 30px;
  }

  .welcome-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .welcome-text h2 {
    font-size: 2rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .welcome {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .welcome-text h2 {
    font-size: 1.8rem;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card i {
    font-size: 2.5rem;
  }

  .stat-card h3 {
    font-size: 1.3rem;
  }
}
/* =================================== */
/*       MEDIA QUERY (MOBILE)          */
/*  Style mirip dengan Gambar 1        */
/* =================================== */

@media (max-width: 768px) {
  /* Hilangkan scroll horizontal di mobile */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* 1. Penyesuaian Spasi Utama */
  .produksi {
    padding: 20px 4% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .produksi .container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. Tata Letak Grid */
  .main-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important; /* Gap antara card */
    margin-bottom: 30px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Paksa tidak ada scroll sama sekali */
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }

  /* 3. Penyesuaian Kartu (System Card) - MIRIP GAMBAR 1 */
  .system-card {
    padding: 22px 20px !important; /* Padding kiri-kanan lebih besar */
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important; /* Rounded corner seperti gambar 1 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important; /* Soft shadow */
    border: none !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: white !important;
    position: relative !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    min-height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Garis gradient purple-blue di atas seperti gambar 1 */
  .system-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 16px 16px 0 0 !important;
    display: block !important;
  }

  .card-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    gap: 15px !important;
    border-bottom: none !important;
    align-items: flex-start !important;
    min-height: 85px !important;
  }

  /* Ikon dengan gradient purple seperti gambar 1 */
  .card-header img {
    width: 55px !important;
    height: 55px !important;
    padding: 12px !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25) !important;
  }

  /* Card title section */
  .card-title {
    flex-grow: 1;
    min-width: 0;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 60px !important;
  }

  .card-title h3 {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
    color: #003366 !important;
    word-wrap: break-word !important;
  }

  .card-title p {
    font-size: 0.78rem !important;
    color: #6c757d !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }

  /* 4. Dropdown Toggle - Orange/Peach seperti gambar 1 */
  .dropdown {
    align-self: flex-start !important;
  }
  
  .dropdown-toggle {
    width: 42px !important;
    height: 42px !important;
    border-width: 0 !important;
    background: rgba(255, 153, 102, 0.15) !important; /* Orange peach background */
    border: 2px solid rgba(255, 153, 102, 0.3) !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }

  .dropdown-toggle:hover {
    background: rgba(255, 153, 102, 0.25) !important;
  }

  .dropdown-toggle i {
    color: #ff9966 !important; /* Orange/peach color */
    font-size: 1.1rem !important;
  }

  .dropdown-toggle::after {
    content: none !important;
    display: none !important;
  }

  .dropdown-content {
    top: 50px !important;
    right: 0 !important;
    left: unset !important;
    min-width: 220px !important;
    max-width: 85vw !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  }

  .dropdown-content a {
    padding: 14px 18px !important;
    font-size: 0.88rem !important;
  }

  .dropdown-content a:hover {
    padding-left: 24px !important;
  }

  /* Row dan Col di mobile */
  .row {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Special Cards */
  .special-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .special-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .special-card img {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    padding: 0 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .produksi {
    padding: 20px 3% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .produksi .container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .lainnya h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .main-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Paksa tidak ada scroll sama sekali */
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }

  .system-card {
    padding: 20px 18px !important; /* Padding kiri-kanan yang proporsional */
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-height: 130px !important;
  }

  .system-card::before {
    border-radius: 14px 14px 0 0 !important;
  }

  .card-header {
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-height: 80px !important;
  }

  .card-header img {
    width: 50px !important;
    height: 50px !important;
    padding: 10px !important;
    border-radius: 12px !important;
  }

  .card-title {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    min-height: 55px !important;
  }

  .card-title h3 {
    font-size: 0.95rem !important;
  }

  .card-title p {
    font-size: 0.72rem !important;
  }

  .dropdown-toggle {
    width: 38px !important;
    height: 38px !important;
  }

  .dropdown-toggle i {
    font-size: 1rem !important;
  }

  .row {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .special-card-content a {
    font-size: 1.1rem;
  }
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6600, #ff8533);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}
.row {
  display: flex;
  gap: 20px; /* jarak antar kolom */
  width: 100%;
  max-width: 100%;
}

.col {
  flex: 1; /* otomatis rata */
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  min-width: 0; /* Prevent flex item overflow */
}

/* =================================
  RESPONSIVE DESIGN UNTUK LAYAR BESAR
================================= */

/* Layar Desktop Besar (1400px - 1599px) */
@media (min-width: 1400px) {
  .produksi {
    max-width: 1400px;
  }

  .container {
    max-width: 1400px;
  }

  .main-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(10px, 1vw, 20px);
  }

  .system-card {
    padding: clamp(30px, 2.5vw, 40px);
  }

  .card-title h3 {
    font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  }
}

/* Layar Desktop Sangat Besar (1600px - 1919px) */
@media (min-width: 1600px) {
  .produksi {
    max-width: 1600px;
  }

  .container {
    max-width: 1600px;
  }

  .main-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: clamp(20px, 1.5vw, 30px);
  }

  .system-card {
    padding: clamp(40px, 3vw, 50px);
  }

  .card-title h3 {
    font-size: clamp(1.7rem, 2vw, 2rem);
  }
}

/* Layar Ultra Wide (1920px+) */
@media (min-width: 1920px) {
  .produksi {
    max-width: 1800px;
  }

  .container {
    max-width: 1800px;
  }

  .main-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: clamp(30px, 2vw, 40px);
  }

  .system-card {
    padding: clamp(50px, 3.5vw, 60px);
  }

  .card-title h3 {
    font-size: clamp(2rem, 2.3vw, 2.3rem);
  }
}