#about {
  background-color: #ffffff;
  background-image: none ;    
}

/* Container Utama Layout Kolom Kiri & Kanan */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 10%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* Kolom Kiri - Konten Teks */
.about-content {
  flex: 1;
}

.about-badge {
  color: #C82333;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.about-badge::before {
  content: "— ";
}

.about-title {
  font-size: 2.8rem;
  color: #1a0a0d;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-title .text-highlight {
  color: #C82333;
  font-style: italic;
}

.about-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-statement {
  font-weight: 700;
  color: #1a0a0d;
  margin-bottom: 2.5rem;
}

.btn-explore {
  display: inline-block;
  background-color: #C82333;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(199, 42, 58, 0.3);
  transition: transform 0.2s;
}

.btn-explore:hover {
  transform: translateY(-2px);
}

/* Kolom Kanan - Sisi Card */
.about-card-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.chapter-card {
  background-color: #FDE2E4;
  border: 1px solid #C82333;
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* Ensure Card as Relative Container */
.chapter-card {
  position: relative !important;
}

/* BASE STYLE UNTUK SEMUA FLOATING LOGO */
.chapter-floating-logo {
  position: absolute !important;
  width: 50px !important;
  height: 50px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  border: 3px solid #ffffff !important;
  box-shadow: 0 8px 18px rgba(200, 35, 51, 0.22) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  transition: transform 0.3s ease !important;
}

.chapter-floating-logo img {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* POSISI LOGO 1 (KIRI BAWAH) */
.chapter-floating-logo.logo-left {
  bottom: -15px !important;
  left: -15px !important;
}

/* POSISI LOGO 2 (KANAN TENGAH) */
.chapter-floating-logo.logo-right {
  top: 55% !important;
  right: -15px !important;
  transform: translateY(-50%) !important;
}

/* HOVER EFFECT DUA-DUANYA MEMBESAR SEDIKIT */
.chapter-card:hover .chapter-floating-logo.logo-left {
  transform: scale(1.1) rotate(-8deg) !important;
}

.chapter-card:hover .chapter-floating-logo.logo-right {
  transform: translateY(-50%) scale(1.1) rotate(8deg) !important;
}
.card-header h3 {
  display: inline;
  font-size: 1.2rem;
  color: #1a0a0d;
}

.card-header .text-gold {
  color: #d4af37;
  font-weight: 700;
}

/* Map */
.map-container {
  margin: 2rem 0;
  text-align: center;
}

.map-image {
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.05));
}

/* Pastikan Card Memiliki Position Relative */
.chapter-card {
  position: relative !important;
  background-color: #FDE2E4;
  border: 1px solid #C82333;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

/* Sticker Tag Modern di Pojok Kanan Atas */
.sticker-tag {
  position: absolute;
  top: -14px;
  right: 16px;
  background-color: #C82333;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(200, 35, 51, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
}

.sticker-icon {
  font-size: 13px;
}

/* Map Image Lock Dimensions */
.map-container {
  margin: 1.5rem 0;
  text-align: center;
}

.map-image {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* Daftar Chapter */
.chapter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chapter-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: #1a0a0d;
}

.chapter-list li::before {
  content: "•";
  color: #C82333;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.3rem;
}



@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    padding: 3rem 6%;
    gap: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-card-wrapper {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.7rem;
  }

  .chapter-card {
    padding: 1.75rem;
  }
} 

