/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */


.main-header {
  background: linear-gradient(to right, #002244, #0055aa);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 100px;
  max-width: 100%;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.main-nav ul li a {
  color: whitesmoke;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.main-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hamburger Button (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 150px 20px;
  background: linear-gradient(to right, #003399, rgba(0, 51, 153, 0.7));
  background-image: url(../img/name.jpg);
  color: #003399;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-bottom: 1px solid black;
}

.hero-content {
  z-index: 2;
  max-width: 50%;
  position: relative;
  animation: fadeIn 1s ease-in-out;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  margin-bottom: 25px;
}

.welcome1 {
  font-size: 2.3rem;
  font-family: 'Great Vibes', cursive;
  font-weight: bold;
  background: linear-gradient(to right, #003399, brown, black, #003399, aqua, #003399, #000000);
  background-size: 400% 100%;
  animation: rainbowShift 5s infinite linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.button {
  background: gold;
  color: #003399;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.button:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* button login */

.button-login {
  background: gold;
  text-decoration-color: #000;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.button:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



/* Papan Video */

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;

  /* Bingkai gradien + glow biru + bayangan */
  box-shadow:
    0 0 15px 3px rgba(0, 0, 0, 0.5),
    /* glow luar */
    inset 0 0 8px rgba(3, 3, 3, 0.8),
    /* glow dalam */
    -5px 0 25px rgba(0, 0, 0, 0.2);
  /* bayangan utama */
  background-clip: padding-box;
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.4s ease-in-out;
  border-radius: 40px;
  /* supaya video ikut melengkung */
  display: block;
}

.hero-image video:hover {
  transform: scale(1.03);
}

.hero-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 51, 153, 0.5), rgba(255, 255, 255, 0));
  z-index: 1;
  border-radius: 40px;
  /* agar overlay juga melengkung */
}

/* Dekorasi icon & teks */
.video-decor {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 16px;
  color: #fff;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.video-decor:hover {
  background: rgba(0, 0, 0, 0.6);
}

.video-decor i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

/* Efek animasi ringan */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}



/* Akhir Papan Video */




/* Deskripsi Product & Layanan */

.product-section {
  background: linear-gradient(to right, #ff9a9e, #fad0c4, #fdfd97, #a1ffce, #a1c4fd, #c2e9fb, #d4a5ff);
  padding: 60px 20px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-wrapper {
  background: #ffffff;
  border-radius: 100px;
  max-width: 900px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.product-wrapper h2 {
  font-size: 2rem;
  color: #003399;
  margin-bottom: 20px;
  position: relative;
}

.product-wrapper h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: gold;
  margin: 10px auto 0;
  border-radius: 3px;
}

.product-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.product-wrapper strong {
  color: #003399;
}

/* Optional: Animasi masuk */
.product-wrapper {
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Akhir Bagian Deskripsi Product & Layanan */





/* Section */
.section {
  padding: 50px 0;
  text-align: center;
  background: #fff;
  border-bottom: 3px solid #ddd;
}

.section h2 {
  font-size: 2rem;
  color: #003399;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  border-radius: 100px;

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  background: linear-gradient(to right, goldenrod, rgba(0, 51, 153, 0.7));
  padding: 20px;
  width: 100%;
  background-size: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
  transform: translateY(-5px);
  background: goldenrod;
}

.service-item h3 {
  font-size: 1.3rem;
  color: #003399;
  margin-bottom: 10px;
}

/* Footer */
.main-footer {
  background: #003399;
  color: white;
  text-align: center;
  padding: 5px 0;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    margin-left: 350px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    background: #003399;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s ease-in-out;
  }

  .main-nav ul.show {
    max-height: 600px;
  }

  .main-nav ul li {
    width: 100%;
    padding: 10px 20px;
  }

  .main-nav ul li a {
    color: white;
    display: block;
    width: 100%;
  }

  .main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
  }

  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 15px;
  }

  .hero-content {
    max-width: 100%;
    animation: none;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .hero-image img {
    object-position: center;
  }
}


/* Tambahkan ini ke style.css */

.judul-utama {
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.judul-sub {
  margin: 0;
  padding-top: 0cm;
  /* beri sedikit spasi */
  font-size: 2.4rem;
  font-family: 'Bookman Old Style', serif;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}


.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 153, 0.4);
  z-index: 1;
  pointer-events: none;
  /* ini yang penting */
}



/* Bagian Map dan Kotak Saran */

/* Global reset & font */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.location-contact-section {
  padding: 50px 20px;
  background-image: url('../img/background/banking-keyboard.jpeg');
  background-size: contain;
}

.map-form-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.map-container {
  flex: 3;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.form-container {
  flex: 2;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease forwards;
}

.form-container h3 {
  margin-bottom: 20px;
  color: #003366;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input group with icon */
.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  border-radius: 6px;
  background-color: #fdfdfd;
}

.input-group i {
  color: #003366;
}

.input-group input,
.input-group textarea {
  border: none;
  outline: none;
  font-size: 1rem;
  flex: 1;
  background: transparent;
  resize: vertical;
}

.input-group textarea {
  min-height: 80px;
}

.form-container button {
  padding: 12px;
  background: #003366;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.form-container button:hover {
  background: #0055aa;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .map-form-wrapper {
    flex-direction: column;
  }

  .map-container,
  .form-container {
    width: 100%;
  }
}

/* Batas Bagian Map dan Kotak Saran */



/* Fitur Back to Top */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: none;
  background-color: #003399;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: goldenrod;
  transform: scale(1.1);
}

/* Akhir fitur Back to Top */

.main-footer {
  background: linear-gradient(to right, #002244, #0055aa);
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
}


/* Slider iklan */
.fullscreen-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  /* fallback jika gambar tidak muncul */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  box-sizing: border-box;
}

.slider-wrapper {
  width: 100%;
  position: relative;
}

.slider-images {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.slider-images img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #000;
  border-radius: 12px;
}

/* Tombol Navigasi */
.fullscreen-slider .prev,
.fullscreen-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 215, 0, 0.9);
  /* emas semi transparan */
  color: #000;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 28px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.fullscreen-slider .prev:hover,
.fullscreen-slider .next:hover {
  background-color: #ffd700;
}

.fullscreen-slider .prev {
  left: 15px;
}

.fullscreen-slider .next {
  right: 15px;
}

/* Responsive Tombol */
@media (max-width: 768px) {

  .fullscreen-slider .prev,
  .fullscreen-slider .next {
    font-size: 22px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .fullscreen-slider {
    padding: 10px 0;
  }

  .fullscreen-slider .prev,
  .fullscreen-slider .next {
    font-size: 18px;
    padding: 8px;
  }
}



/* Bagian Lelang */

/* Bagian Lelang Grid ala OLX */
.lelang-section {
  padding: 60px 20px;
  background: #f7f9fb;
  color: #003366;
  text-align: center;
}

.lelang-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.lelang-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Item */
.lelang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.lelang-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lelang-item:hover {
  transform: translateY(-5px);
}

.lelang-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.item-info {
  padding: 15px 20px;
  flex: 1;
}

.item-info h3 {
  margin: 0 0 10px;
  color: #003399;
  font-size: 1.1rem;
}

.item-info p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #333;
}

.btn-lelang {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #003399;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn-lelang:hover {
  background-color: #0055cc;
}



/* Akhir bagian lelang */



/* Bagian Hubungi Kami */

.info-kontak {
  background-color: #f9fafc;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.kontak-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.kontak-kolom {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.kontak-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.kontak-item i {
  font-size: 24px;
  color: #003366;
  margin-top: 3px;
  min-width: 24px;
}

.kontak-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.kontak-item p {
  margin: 0;
  font-size: 0.95rem;
}

.kontak-item a {
  color: #003366;
  text-decoration: none;
}

.kontak-item a:hover {
  text-decoration: underline;
  color: #0055cc;
}


/* Responsif */
@media (max-width: 992px) {
  .kontak-container {
    flex-direction: column;
    align-items: center;
  }

  .kontak-kolom {
    width: 100%;
  }
}



/* Akhir Bagian Hubungi Kami */


/* Bagian Pengumuman */
.section-pengumuman {
  padding: 40px 20px;
  text-align: center;
  background-image: url('../img/background/bck1.jpg');
  background-size: cover;
  background-position: center;
}

.pengumuman-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

.pengumuman-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.pengumuman-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .pengumuman-wrapper img {
    max-height: 300px;
  }
}


/* Piagam */

.section-piagam {
  padding: 60px 20px;
  background-image: url('../img/background/Blue-abstract-wallpaper-widescreen-high-definition-pictures-download.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: whitesmoke;
}

.piagam-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.piagam-header p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.piagam-slider {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  transition: transform 0.5s ease;
}

.slide-track img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.slide-track img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox.active {
  display: flex;
}

.piagam-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.piagam-item h4 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.piagam-item p {
  font-size: 0.9rem;
  margin: 5px 0 0;
  opacity: 0.85;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}


/* Responsive */
@media (max-width: 768px) {
  .slide-track {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-template-rows: repeat(3, 1fr);
  }

  .slide-track img {
    height: 180px;
  }
}


/* Bagian logo slider */

.partner-slider {
  background-color: #f9f9f9;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: calc(250px * 10);
  /* jumlah logo × lebar logo */
  animation: slide 25s linear infinite;
}

.slider-track img {
  width: 200px;
  height: 90px;
  margin: 0 20px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.slider-track img:hover {
  filter: grayscale(0%);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track img {
    width: 120px;
    margin: 0 10px;
  }
}


/* Berita */

/* Berita */
.section-berita {
  padding: 60px 20px;
  background: #f5f7fa;
  text-align: center;
}

.berita-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #003399;
}

.berita-header p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.berita-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: left;
}

.berita-item:hover {
  transform: translateY(-5px);
}

.berita-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.berita-content {
  padding: 20px;
}

.berita-content h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #003399;
}

.berita-tanggal {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.berita-deskripsi {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.berita-link {
  display: inline-block;
  padding: 8px 14px;
  background-color: #003399;
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
}

.berita-link:hover {
  background-color: #001f66;
}


.ojk-lps-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  background: #f5f6fa;
  border-top: 3px solid #003399;
  border-bottom: 3px solid #003399;
}

.ojk-lps-container {
  text-align: center;
}

.ojk-lps-container p {
  margin-top: 10px;
  font-size: 16px;
  color: #003399;
}

.ojk-logo, .lps-logo {
  max-height: 60px;
  width: auto;
}

/* Responsif */
@media (max-width: 768px) {
  .ojk-lps-section {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
}



/* =========================================================
   STATISTIK PENGADUAN KONSUMEN
   ========================================================= */

.pengaduan-statistik {
    width: 100%;
    padding: 80px 20px;

    background: #f8fafc;

    box-sizing: border-box;
}

.pengaduan-statistik-container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.pengaduan-statistik-header {
    margin-bottom: 35px;
}

.pengaduan-statistik-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;
    padding: 7px 14px;

    border-radius: 30px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .4px;
    text-transform: uppercase;
}

.pengaduan-statistik-header h2 {
    margin: 0 0 10px;

    color: #172033;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.pengaduan-statistik-header p {
    max-width: 650px;

    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   STATISTIC GRID
   ========================================================= */

.pengaduan-statistik-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 20px;
}


/* =========================================================
   STAT CARD
   ========================================================= */

.pengaduan-stat-card {
    display: flex;
    align-items: center;

    gap: 15px;

    min-height: 120px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 16px;

    box-shadow:
        0 4px 18px rgba(15, 23, 42, .04);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.pengaduan-stat-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(15, 23, 42, .08);
}


/* =========================================================
   ICON
   ========================================================= */

.pengaduan-stat-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 19px;
}


/* Total */

.pengaduan-stat-icon.total {
    background: #eff6ff;
    color: #2563eb;
}


/* Selesai */

.pengaduan-stat-icon.selesai {
    background: #ecfdf5;
    color: #059669;
}


/* Diproses */

.pengaduan-stat-icon.proses {
    background: #fff7ed;
    color: #ea580c;
}


/* Pending */

.pengaduan-stat-icon.pending {
    background: #fef2f2;
    color: #dc2626;
}


/* =========================================================
   CONTENT
   ========================================================= */

.pengaduan-stat-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.pengaduan-stat-content span {
    margin-bottom: 4px;

    color: #64748b;

    font-size: 12px;
    font-weight: 500;
}

.pengaduan-stat-content strong {
    margin-bottom: 3px;

    color: #172033;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 700;
}

.pengaduan-stat-content small {
    color: #94a3b8;

    font-size: 11px;
}


/* =========================================================
   PROGRESS CARD
   ========================================================= */

.pengaduan-progress-card {
    padding: 27px 30px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 16px;

    box-shadow:
        0 4px 18px rgba(15, 23, 42, .04);
}


/* =========================================================
   PROGRESS HEADER
   ========================================================= */

.pengaduan-progress-info {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.pengaduan-progress-label {
    display: block;

    margin-bottom: 5px;

    color: #64748b;

    font-size: 13px;
}

.pengaduan-progress-info h3 {
    margin: 0;

    color: #172033;

    font-size: 32px;
    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   STATUS
   ========================================================= */

.pengaduan-progress-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    border-radius: 30px;

    background: #ecfdf5;

    color: #059669;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   PROGRESS BAR
   ========================================================= */

.pengaduan-progress-bar {
    width: 100%;
    height: 9px;

    overflow: hidden;

    border-radius: 20px;

    background: #e8edf3;
}

.pengaduan-progress-fill {
    height: 100%;

    border-radius: inherit;

    background: #2563eb;

    transition: width .8s ease;
}


/* =========================================================
   PROGRESS FOOTER
   ========================================================= */

.pengaduan-progress-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 10px;

    color: #94a3b8;

    font-size: 11px;
}

.pengaduan-progress-footer span:last-child {
    color: #2563eb;

    font-weight: 700;
}


/* =========================================================
   NOTE
   ========================================================= */

.pengaduan-statistik-note {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 18px;

    color: #94a3b8;

    font-size: 11px;
}

.pengaduan-statistik-note i {
    color: #2563eb;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 950px) {

    .pengaduan-statistik-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .pengaduan-statistik {
        padding: 55px 16px;
    }

    .pengaduan-statistik-header h2 {
        font-size: 25px;
    }

    .pengaduan-statistik-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .pengaduan-stat-card {
        min-height: 100px;
    }

    .pengaduan-progress-card {
        padding: 22px 20px;
    }

    .pengaduan-progress-info {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 18px;
    }

    .pengaduan-progress-info h3 {
        font-size: 28px;
    }

    .pengaduan-progress-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 4px;
    }

}
