/* ===== CSS VARIABLES ===== */
:root {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  --primary-color: #3f51b5;
  --secondary-color: #ffd700;
  --dark-bg: #1a1a1a;
  --light-text: #ffffff;
  --gray-text: #888888;
  --border-color: #333;
  --gradient-primary: linear-gradient(to left, #b28923 0%, #825d14 25%, #583810 50%, #240f0b 75%);
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #ffd700 100%);
  --gradient-stats: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-primary);
    color: #ffffff;
    line-height: 1.6;
}

/* Container System */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 1320px;
}

.container-sm {
  max-width: 540px;
}

.container-md {
  max-width: 720px;
}

.container-lg {
  max-width: 960px;
}

.container-xl {
  max-width: 1140px;
}

.container-xxl {
  max-width: 1320px;
}

/* Responsive Container Breakpoints */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Row System */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Column Base */
.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

/* Column Sizes (1-12) */
.col-1 { flex: 0 0 auto; width: 8.33333333%; }
.col-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* Offset Classes */
.offset-1 { margin-left: 8.33333333%; }
.offset-2 { margin-left: 16.66666667%; }
.offset-3 { margin-left: 25%; }
.offset-4 { margin-left: 33.33333333%; }
.offset-5 { margin-left: 41.66666667%; }
.offset-6 { margin-left: 50%; }
.offset-7 { margin-left: 58.33333333%; }
.offset-8 { margin-left: 66.66666667%; }
.offset-9 { margin-left: 75%; }
.offset-10 { margin-left: 83.33333333%; }
.offset-11 { margin-left: 91.66666667%; }

/* Gutter Classes */
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

/* Alignment Classes for Rows */
.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

/* Justify Content Classes */
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

/* Align Self Classes for Columns */
.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

/* Order Classes */
.order-first {
  order: -1 !important;
}

.order-0 { order: 0 !important; }
.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }
.order-3 { order: 3 !important; }
.order-4 { order: 4 !important; }
.order-5 { order: 5 !important; }
.order-6 { order: 6 !important; }
.order-7 { order: 7 !important; }
.order-8 { order: 8 !important; }
.order-9 { order: 9 !important; }
.order-10 { order: 10 !important; }
.order-11 { order: 11 !important; }
.order-12 { order: 12 !important; }

.order-last {
  order: 13 !important;
}

/* Small (sm) Breakpoint - ≥576px */
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-sm-1 { flex: 0 0 auto; width: 8.33333333%; }
  .col-sm-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-sm-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
  
  .offset-sm-0 { margin-left: 0; }
  .offset-sm-1 { margin-left: 8.33333333%; }
  .offset-sm-2 { margin-left: 16.66666667%; }
  .offset-sm-3 { margin-left: 25%; }
  .offset-sm-4 { margin-left: 33.33333333%; }
  .offset-sm-5 { margin-left: 41.66666667%; }
  .offset-sm-6 { margin-left: 50%; }
  .offset-sm-7 { margin-left: 58.33333333%; }
  .offset-sm-8 { margin-left: 66.66666667%; }
  .offset-sm-9 { margin-left: 75%; }
  .offset-sm-10 { margin-left: 83.33333333%; }
  .offset-sm-11 { margin-left: 91.66666667%; }
  
  .g-sm-0, .gx-sm-0 { --bs-gutter-x: 0; }
  .g-sm-0, .gy-sm-0 { --bs-gutter-y: 0; }
  .g-sm-1, .gx-sm-1 { --bs-gutter-x: 0.25rem; }
  .g-sm-1, .gy-sm-1 { --bs-gutter-y: 0.25rem; }
  .g-sm-2, .gx-sm-2 { --bs-gutter-x: 0.5rem; }
  .g-sm-2, .gy-sm-2 { --bs-gutter-y: 0.5rem; }
  .g-sm-3, .gx-sm-3 { --bs-gutter-x: 1rem; }
  .g-sm-3, .gy-sm-3 { --bs-gutter-y: 1rem; }
  .g-sm-4, .gx-sm-4 { --bs-gutter-x: 1.5rem; }
  .g-sm-4, .gy-sm-4 { --bs-gutter-y: 1.5rem; }
  .g-sm-5, .gx-sm-5 { --bs-gutter-x: 3rem; }
  .g-sm-5, .gy-sm-5 { --bs-gutter-y: 3rem; }
  
  .order-sm-first { order: -1 !important; }
  .order-sm-0 { order: 0 !important; }
  .order-sm-1 { order: 1 !important; }
  .order-sm-2 { order: 2 !important; }
  .order-sm-3 { order: 3 !important; }
  .order-sm-4 { order: 4 !important; }
  .order-sm-5 { order: 5 !important; }
  .order-sm-6 { order: 6 !important; }
  .order-sm-7 { order: 7 !important; }
  .order-sm-8 { order: 8 !important; }
  .order-sm-9 { order: 9 !important; }
  .order-sm-10 { order: 10 !important; }
  .order-sm-11 { order: 11 !important; }
  .order-sm-12 { order: 12 !important; }
  .order-sm-last { order: 13 !important; }
  
  .align-items-sm-start { align-items: flex-start !important; }
  .align-items-sm-end { align-items: flex-end !important; }
  .align-items-sm-center { align-items: center !important; }
  .align-items-sm-baseline { align-items: baseline !important; }
  .align-items-sm-stretch { align-items: stretch !important; }
  
  .justify-content-sm-start { justify-content: flex-start !important; }
  .justify-content-sm-end { justify-content: flex-end !important; }
  .justify-content-sm-center { justify-content: center !important; }
  .justify-content-sm-between { justify-content: space-between !important; }
  .justify-content-sm-around { justify-content: space-around !important; }
  .justify-content-sm-evenly { justify-content: space-evenly !important; }
  
  .align-self-sm-auto { align-self: auto !important; }
  .align-self-sm-start { align-self: flex-start !important; }
  .align-self-sm-end { align-self: flex-end !important; }
  .align-self-sm-center { align-self: center !important; }
  .align-self-sm-baseline { align-self: baseline !important; }
  .align-self-sm-stretch { align-self: stretch !important; }
}

/* Medium (md) Breakpoint - ≥768px */
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-md-1 { flex: 0 0 auto; width: 8.33333333%; }
  .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }
  
  .offset-md-0 { margin-left: 0; }
  .offset-md-1 { margin-left: 8.33333333%; }
  .offset-md-2 { margin-left: 16.66666667%; }
  .offset-md-3 { margin-left: 25%; }
  .offset-md-4 { margin-left: 33.33333333%; }
  .offset-md-5 { margin-left: 41.66666667%; }
  .offset-md-6 { margin-left: 50%; }
  .offset-md-7 { margin-left: 58.33333333%; }
  .offset-md-8 { margin-left: 66.66666667%; }
  .offset-md-9 { margin-left: 75%; }
  .offset-md-10 { margin-left: 83.33333333%; }
  .offset-md-11 { margin-left: 91.66666667%; }
  
  .g-md-0, .gx-md-0 { --bs-gutter-x: 0; }
  .g-md-0, .gy-md-0 { --bs-gutter-y: 0; }
  .g-md-1, .gx-md-1 { --bs-gutter-x: 0.25rem; }
  .g-md-1, .gy-md-1 { --bs-gutter-y: 0.25rem; }
  .g-md-2, .gx-md-2 { --bs-gutter-x: 0.5rem; }
  .g-md-2, .gy-md-2 { --bs-gutter-y: 0.5rem; }
  .g-md-3, .gx-md-3 { --bs-gutter-x: 1rem; }
  .g-md-3, .gy-md-3 { --bs-gutter-y: 1rem; }
  .g-md-4, .gx-md-4 { --bs-gutter-x: 1.5rem; }
  .g-md-4, .gy-md-4 { --bs-gutter-y: 1.5rem; }
  .g-md-5, .gx-md-5 { --bs-gutter-x: 3rem; }
  .g-md-5, .gy-md-5 { --bs-gutter-y: 3rem; }
  
  .order-md-first { order: -1 !important; }
  .order-md-0 { order: 0 !important; }
  .order-md-1 { order: 1 !important; }
  .order-md-2 { order: 2 !important; }
  .order-md-3 { order: 3 !important; }
  .order-md-4 { order: 4 !important; }
  .order-md-5 { order: 5 !important; }
  .order-md-6 { order: 6 !important; }
  .order-md-7 { order: 7 !important; }
  .order-md-8 { order: 8 !important; }
  .order-md-9 { order: 9 !important; }
  .order-md-10 { order: 10 !important; }
  .order-md-11 { order: 11 !important; }
  .order-md-12 { order: 12 !important; }
  .order-md-last { order: 13 !important; }
  
  .align-items-md-start { align-items: flex-start !important; }
  .align-items-md-end { align-items: flex-end !important; }
  .align-items-md-center { align-items: center !important; }
  .align-items-md-baseline { align-items: baseline !important; }
  .align-items-md-stretch { align-items: stretch !important; }
  
  .justify-content-md-start { justify-content: flex-start !important; }
  .justify-content-md-end { justify-content: flex-end !important; }
  .justify-content-md-center { justify-content: center !important; }
  .justify-content-md-between { justify-content: space-between !important; }
  .justify-content-md-around { justify-content: space-around !important; }
  .justify-content-md-evenly { justify-content: space-evenly !important; }
  
  .align-self-md-auto { align-self: auto !important; }
  .align-self-md-start { align-self: flex-start !important; }
  .align-self-md-end { align-self: flex-end !important; }
  .align-self-md-center { align-self: center !important; }
  .align-self-md-baseline { align-self: baseline !important; }
  .align-self-md-stretch { align-self: stretch !important; }
}

/* Large (lg) Breakpoint - ≥992px */
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
  
  .offset-lg-0 { margin-left: 0; }
  .offset-lg-1 { margin-left: 8.33333333%; }
  .offset-lg-2 { margin-left: 16.66666667%; }
  .offset-lg-3 { margin-left: 25%; }
  .offset-lg-4 { margin-left: 33.33333333%; }
  .offset-lg-5 { margin-left: 41.66666667%; }
  .offset-lg-6 { margin-left: 50%; }
  .offset-lg-7 { margin-left: 58.33333333%; }
  .offset-lg-8 { margin-left: 66.66666667%; }
  .offset-lg-9 { margin-left: 75%; }
  .offset-lg-10 { margin-left: 83.33333333%; }
  .offset-lg-11 { margin-left: 91.66666667%; }
  
  .g-lg-0, .gx-lg-0 { --bs-gutter-x: 0; }
  .g-lg-0, .gy-lg-0 { --bs-gutter-y: 0; }
  .g-lg-1, .gx-lg-1 { --bs-gutter-x: 0.25rem; }
  .g-lg-1, .gy-lg-1 { --bs-gutter-y: 0.25rem; }
  .g-lg-2, .gx-lg-2 { --bs-gutter-x: 0.5rem; }
  .g-lg-2, .gy-lg-2 { --bs-gutter-y: 0.5rem; }
  .g-lg-3, .gx-lg-3 { --bs-gutter-x: 1rem; }
  .g-lg-3, .gy-lg-3 { --bs-gutter-y: 1rem; }
  .g-lg-4, .gx-lg-4 { --bs-gutter-x: 1.5rem; }
  .g-lg-4, .gy-lg-4 { --bs-gutter-y: 1.5rem; }
  .g-lg-5, .gx-lg-5 { --bs-gutter-x: 3rem; }
  .g-lg-5, .gy-lg-5 { --bs-gutter-y: 3rem; }
  
  .order-lg-first { order: -1 !important; }
  .order-lg-0 { order: 0 !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  .order-lg-3 { order: 3 !important; }
  .order-lg-4 { order: 4 !important; }
  .order-lg-5 { order: 5 !important; }
  .order-lg-6 { order: 6 !important; }
  .order-lg-7 { order: 7 !important; }
  .order-lg-8 { order: 8 !important; }
  .order-lg-9 { order: 9 !important; }
  .order-lg-10 { order: 10 !important; }
  .order-lg-11 { order: 11 !important; }
  .order-lg-12 { order: 12 !important; }
  .order-lg-last { order: 13 !important; }
  
  .align-items-lg-start { align-items: flex-start !important; }
  .align-items-lg-end { align-items: flex-end !important; }
  .align-items-lg-center { align-items: center !important; }
  .align-items-lg-baseline { align-items: baseline !important; }
  .align-items-lg-stretch { align-items: stretch !important; }
  
  .justify-content-lg-start { justify-content: flex-start !important; }
  .justify-content-lg-end { justify-content: flex-end !important; }
  .justify-content-lg-center { justify-content: center !important; }
  .justify-content-lg-between { justify-content: space-between !important; }
  .justify-content-lg-around { justify-content: space-around !important; }
  .justify-content-lg-evenly { justify-content: space-evenly !important; }
  
  .align-self-lg-auto { align-self: auto !important; }
  .align-self-lg-start { align-self: flex-start !important; }
  .align-self-lg-end { align-self: flex-end !important; }
  .align-self-lg-center { align-self: center !important; }
  .align-self-lg-baseline { align-self: baseline !important; }
  .align-self-lg-stretch { align-self: stretch !important; }
}

/* Extra Large (xl) Breakpoint - ≥1200px */
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-xl-1 { flex: 0 0 auto; width: 8.33333333%; }
  .col-xl-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }
  
  .offset-xl-0 { margin-left: 0; }
  .offset-xl-1 { margin-left: 8.33333333%; }
  .offset-xl-2 { margin-left: 16.66666667%; }
  .offset-xl-3 { margin-left: 25%; }
  .offset-xl-4 { margin-left: 33.33333333%; }
  .offset-xl-5 { margin-left: 41.66666667%; }
  .offset-xl-6 { margin-left: 50%; }
  .offset-xl-7 { margin-left: 58.33333333%; }
  .offset-xl-8 { margin-left: 66.66666667%; }
  .offset-xl-9 { margin-left: 75%; }
  .offset-xl-10 { margin-left: 83.33333333%; }
  .offset-xl-11 { margin-left: 91.66666667%; }
  
  .g-xl-0, .gx-xl-0 { --bs-gutter-x: 0; }
  .g-xl-0, .gy-xl-0 { --bs-gutter-y: 0; }
  .g-xl-1, .gx-xl-1 { --bs-gutter-x: 0.25rem; }
  .g-xl-1, .gy-xl-1 { --bs-gutter-y: 0.25rem; }
  .g-xl-2, .gx-xl-2 { --bs-gutter-x: 0.5rem; }
  .g-xl-2, .gy-xl-2 { --bs-gutter-y: 0.5rem; }
  .g-xl-3, .gx-xl-3 { --bs-gutter-x: 1rem; }
  .g-xl-3, .gy-xl-3 { --bs-gutter-y: 1rem; }
  .g-xl-4, .gx-xl-4 { --bs-gutter-x: 1.5rem; }
  .g-xl-4, .gy-xl-4 { --bs-gutter-y: 1.5rem; }
  .g-xl-5, .gx-xl-5 { --bs-gutter-x: 3rem; }
  .g-xl-5, .gy-xl-5 { --bs-gutter-y: 3rem; }
  
  .order-xl-first { order: -1 !important; }
  .order-xl-0 { order: 0 !important; }
  .order-xl-1 { order: 1 !important; }
  .order-xl-2 { order: 2 !important; }
  .order-xl-3 { order: 3 !important; }
  .order-xl-4 { order: 4 !important; }
  .order-xl-5 { order: 5 !important; }
  .order-xl-6 { order: 6 !important; }
  .order-xl-7 { order: 7 !important; }
  .order-xl-8 { order: 8 !important; }
  .order-xl-9 { order: 9 !important; }
  .order-xl-10 { order: 10 !important; }
  .order-xl-11 { order: 11 !important; }
  .order-xl-12 { order: 12 !important; }
  .order-xl-last { order: 13 !important; }
  
  .align-items-xl-start { align-items: flex-start !important; }
  .align-items-xl-end { align-items: flex-end !important; }
  .align-items-xl-center { align-items: center !important; }
  .align-items-xl-baseline { align-items: baseline !important; }
  .align-items-xl-stretch { align-items: stretch !important; }
  
  .justify-content-xl-start { justify-content: flex-start !important; }
  .justify-content-xl-end { justify-content: flex-end !important; }
  .justify-content-xl-center { justify-content: center !important; }
  .justify-content-xl-between { justify-content: space-between !important; }
  .justify-content-xl-around { justify-content: space-around !important; }
  .justify-content-xl-evenly { justify-content: space-evenly !important; }
  
  .align-self-xl-auto { align-self: auto !important; }
  .align-self-xl-start { align-self: flex-start !important; }
  .align-self-xl-end { align-self: flex-end !important; }
  .align-self-xl-center { align-self: center !important; }
  .align-self-xl-baseline { align-self: baseline !important; }
  .align-self-xl-stretch { align-self: stretch !important; }
}

/* Extra Extra Large (xxl) Breakpoint - ≥1400px */
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-xxl-1 { flex: 0 0 auto; width: 8.33333333%; }
  .col-xxl-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xxl-6 { flex: 0 0 auto; width: 50%; }
  .col-xxl-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-xxl-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-xxl-9 { flex: 0 0 auto; width: 75%; }
  .col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .col-xxl-12 { flex: 0 0 auto; width: 100%; }
  
  .offset-xxl-0 { margin-left: 0; }
  .offset-xxl-1 { margin-left: 8.33333333%; }
  .offset-xxl-2 { margin-left: 16.66666667%; }
  .offset-xxl-3 { margin-left: 25%; }
  .offset-xxl-4 { margin-left: 33.33333333%; }
  .offset-xxl-5 { margin-left: 41.66666667%; }
  .offset-xxl-6 { margin-left: 50%; }
  .offset-xxl-7 { margin-left: 58.33333333%; }
  .offset-xxl-8 { margin-left: 66.66666667%; }
  .offset-xxl-9 { margin-left: 75%; }
  .offset-xxl-10 { margin-left: 83.33333333%; }
  .offset-xxl-11 { margin-left: 91.66666667%; }
  
  .g-xxl-0, .gx-xxl-0 { --bs-gutter-x: 0; }
  .g-xxl-0, .gy-xxl-0 { --bs-gutter-y: 0; }
  .g-xxl-1, .gx-xxl-1 { --bs-gutter-x: 0.25rem; }
  .g-xxl-1, .gy-xxl-1 { --bs-gutter-y: 0.25rem; }
  .g-xxl-2, .gx-xxl-2 { --bs-gutter-x: 0.5rem; }
  .g-xxl-2, .gy-xxl-2 { --bs-gutter-y: 0.5rem; }
  .g-xxl-3, .gx-xxl-3 { --bs-gutter-x: 1rem; }
  .g-xxl-3, .gy-xxl-3 { --bs-gutter-y: 1rem; }
  .g-xxl-4, .gx-xxl-4 { --bs-gutter-x: 1.5rem; }
  .g-xxl-4, .gy-xxl-4 { --bs-gutter-y: 1.5rem; }
  .g-xxl-5, .gx-xxl-5 { --bs-gutter-x: 3rem; }
  .g-xxl-5, .gy-xxl-5 { --bs-gutter-y: 3rem; }
  
  .order-xxl-first { order: -1 !important; }
  .order-xxl-0 { order: 0 !important; }
  .order-xxl-1 { order: 1 !important; }
  .order-xxl-2 { order: 2 !important; }
  .order-xxl-3 { order: 3 !important; }
  .order-xxl-4 { order: 4 !important; }
  .order-xxl-5 { order: 5 !important; }
  .order-xxl-6 { order: 6 !important; }
  .order-xxl-7 { order: 7 !important; }
  .order-xxl-8 { order: 8 !important; }
  .order-xxl-9 { order: 9 !important; }
  .order-xxl-10 { order: 10 !important; }
  .order-xxl-11 { order: 11 !important; }
  .order-xxl-12 { order: 12 !important; }
  .order-xxl-last { order: 13 !important; }
  
  .align-items-xxl-start { align-items: flex-start !important; }
  .align-items-xxl-end { align-items: flex-end !important; }
  .align-items-xxl-center { align-items: center !important; }
  .align-items-xxl-baseline { align-items: baseline !important; }
  .align-items-xxl-stretch { align-items: stretch !important; }
  
  .justify-content-xxl-start { justify-content: flex-start !important; }
  .justify-content-xxl-end { justify-content: flex-end !important; }
  .justify-content-xxl-center { justify-content: center !important; }
  .justify-content-xxl-between { justify-content: space-between !important; }
  .justify-content-xxl-around { justify-content: space-around !important; }
  .justify-content-xxl-evenly { justify-content: space-evenly !important; }
  
  .align-self-xxl-auto { align-self: auto !important; }
  .align-self-xxl-start { align-self: flex-start !important; }
  .align-self-xxl-end { align-self: flex-end !important; }
  .align-self-xxl-center { align-self: center !important; }
  .align-self-xxl-baseline { align-self: baseline !important; }
  .align-self-xxl-stretch { align-self: stretch !important; }
}

/* Additional Utility Classes */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* Display Classes */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* Responsive Display Classes */
@media (min-width: 576px) {
  .d-sm-none { display: none !important; }
  .d-sm-inline { display: inline !important; }
  .d-sm-inline-block { display: inline-block !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
  .d-sm-inline-flex { display: inline-flex !important; }
}

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-inline { display: inline !important; }
  .d-md-inline-block { display: inline-block !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-inline-flex { display: inline-flex !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-inline { display: inline !important; }
  .d-lg-inline-block { display: inline-block !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline-flex { display: inline-flex !important; }
}

@media (min-width: 1200px) {
  .d-xl-none { display: none !important; }
  .d-xl-inline { display: inline !important; }
  .d-xl-inline-block { display: inline-block !important; }
  .d-xl-block { display: block !important; }
  .d-xl-flex { display: flex !important; }
  .d-xl-inline-flex { display: inline-flex !important; }
}

@media (min-width: 1400px) {
  .d-xxl-none { display: none !important; }
  .d-xxl-inline { display: inline !important; }
  .d-xxl-inline-block { display: inline-block !important; }
  .d-xxl-block { display: block !important; }
  .d-xxl-flex { display: flex !important; }
  .d-xxl-inline-flex { display: inline-flex !important; }
}

/* Flexbox Utilities */
.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #888888;
}

.text-yellow {
    color: #ffd700;
}
/* Ukuran teks */
.text-xs { font-size: 0.75rem; }   /* 12px */
.text-sm { font-size: 0.875rem; }  /* 14px */
.text-md { font-size: 1rem; }      /* 16px */
.text-lg { font-size: 1.125rem; }  /* 18px */
.text-xl { font-size: 1.25rem; }   /* 20px */
.text-2xl { font-size: 1.5rem; }   /* 24px */
.text-3xl { font-size: 1.875rem; } /* 30px */

/* Ketebalan teks */
.text-thin { font-weight: 100; }
.text-light { font-weight: 300; }
.text-normal { font-weight: 400; }
.text-medium { font-weight: 500; }
.text-semibold { font-weight: 600; }
.text-bold { font-weight: 700; }
.text-extrabold { font-weight: 800; }

/* Warna teks */
.text-primary { color: #0d6efd; }
.text-secondary { color: #6c757d; }
.text-success { color: #198754; }
.text-danger { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-info { color: #0dcaf0; }
.text-dark { color: #212529; }
.text-light { color: #f8f9fa; }
.text-muted { color: #6c757d; }

/* Transformasi teks */
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

/* Perataan teks */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Efek tambahan */
.text-underline { text-decoration: underline; }
.text-line-through { text-decoration: line-through; }
.text-italic { font-style: italic; }

/* Spacing Utilities */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }
.py-5 { padding: 3rem 0; }

.px-1 { padding: 0 0.5rem; }
.px-2 { padding: 0 1rem; }
.px-3 { padding: 0 1.5rem; }
.px-4 { padding: 0 2rem; }

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

.custom-cursor.clicking {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 215, 0, 0.5) 70%, transparent 100%);
}

/* Mouse Trail Bubbles */
.mouse-bubble {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9998;
    animation: bubbleFloat 2s ease-out forwards;
}

@keyframes bubbleFloat {
    0% {
        opacity: 0.8;
        transform: scale(0) translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: scale(1) translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(-40px);
    }
}
/* Navbar Styles */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: #ffd700;
    color: #000000;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.dropdown-item.active {
    background-color: #ffd700;
    color: #000000;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: grab;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 2px;
    padding: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn:hover {
    cursor: pointer;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    cursor: grabbing;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.btn-outline:hover {
    background-color: #333;
    border-color: #555;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Main Content */
.main-content {
  margin-top: 70px;
  min-height: calc(100vh - 200px);
}
.hero {
    position: relative;
    min-height: 100vh;
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #ffd700 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.text-yellow {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
/* Features Section - Blog Style */
.features {
    padding: 5rem 0;
    min-height: 90vh;
}

.features-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.feature-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #1e90ff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-content {
    padding: 1.5rem;
    color: #333333;
}

.feature-title {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
    min-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-divider {
    width: 40px;
    height: 3px;
    background-color: #3f51b5;
    margin: 1rem 0;
}

.feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.author-icon {
    font-size: 0.8rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.feature-tag {
    background-color: transparent;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.feature-tag:hover {
    background-color: #ffd700;
    color: #000000;
    border-color: #ffd700;
}

/* Code Section */
.code-section {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    padding-top: 4rem;
    margin-top: 5rem;
}

.code-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.code-block {
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    overflow-x: auto;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

/* Blog Layout */
.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-main {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Article Styles */
.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.article-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-category {
    background-color: #ffd700;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.article-content {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    background-color: #333;
    border-left: 4px solid #ffd700;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

/* Social Share */
.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-btn.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.share-btn.telegram:hover {
    border-color: #0088cc;
    color: #0088cc;
}

/* Sidebar Widgets */
.widget {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
}

.widget-title {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.trending-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.trending-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.trending-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.trending-content h4 {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.trending-content h4 a {
    color: #ffffff;
    text-decoration: none;
}

.trending-content h4 a:hover {
    color: #ffd700;
}

.trending-date {
    font-size: 0.8rem;
    color: #888888;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #555;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #ffd700;
}

.blog-card-excerpt {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888888;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.footer-section p, .footer-section a {
    color: #888888;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888888;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s ease;
}
/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow: hidden;
    min-height: 400px;
    padding-top: 4rem;
    margin-top: 5rem;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    padding-top: 0;
}

.statistics-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-OTni9eJtzZRkbRsuF5Qy4EKFpZwNiA.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.statistics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.statistics-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.statistics-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, #ffd700, #ffeb3b);
    transform: scale(1.1) rotate(5deg);
}

.stat-item:hover .stat-icon svg {
    color: #000000;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number.animate {
    animation: countUp 0.6s ease-out;
}

/* Popular Categories Section */
.popular-categories-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.popular-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(63, 81, 181, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3f51b5, transparent);
}

.divider-dot {
    width: 12px;
    height: 12px;
    background: #3f51b5;
    border-radius: 50%;
    position: relative;
}

.divider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #3f51b5;
    border-radius: 50%;
    opacity: 0.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-item {
    background: #1b1a1a;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.category-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffd700, #ffeb3b);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-item:hover .category-icon::after {
    opacity: 1;
}

.category-item:hover .category-icon {
    background: linear-gradient(135deg, #ffd700, #ffeb3b);
    transform: scale(1.1) rotate(5deg);
}

.category-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.category-item:hover .category-icon svg {
    color: #000000;
}

.category-content {
    flex: 1;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.category-item:hover .category-title {
    color: #3f51b5;
}

.category-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-count {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 500;
}

.popularity-badge {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #90caf9;
    transition: all 0.3s ease;
}

.category-item:hover .popularity-badge {
    background: linear-gradient(135deg, #ffd700, #ffeb3b);
    color: #000000;
    border-color: #ffd700;
    transform: scale(1.05);
}

.section-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Login Form Styles */
.login-form {
    margin: 1rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-icon {
    width: 16px;
    height: 16px;
    color: #666;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.password-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background-color: #3f51b5;
    border-color: #3f51b5;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: #3f51b5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #303f9f;
    text-decoration: underline;
}

.login-methods {
    margin-top: 1.5rem;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.divider span {
    background-color: #ffffff;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #4285F4;
    color: #4285F4;
}

.facebook-btn:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.modal-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.footer-links {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-links a {
    color: #3f51b5;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-spinner {
    width: 16px;
    height: 16px;
}

/* ===================================
   BADGE SYSTEM - SIP PBBKU THEME
   ===================================
   Consistent with golden/brown color scheme
*/

/* Base Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Badge Sizes */
.badge-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    border-radius: 0.375rem;
}

.badge-sm {
    padding: 0.3125rem 0.625rem;
    font-size: 0.6875rem;
    border-radius: 0.4375rem;
}

.badge-lg {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
}

.badge-xl {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

/* Primary Colors - Golden Theme */
.badge-primary {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    border-color: #b8860b;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.badge-primary:hover {
    background: linear-gradient(135deg, #9a7209, #b8860b);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
    transform: translateY(-1px);
}

.badge-secondary {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    color: #ffffff;
    border-color: #cd853f;
    box-shadow: 0 2px 8px rgba(205, 133, 63, 0.3);
}

.badge-secondary:hover {
    background: linear-gradient(135deg, #b8732d, #cd853f);
    box-shadow: 0 4px 12px rgba(205, 133, 63, 0.4);
    transform: translateY(-1px);
}

/* Status Colors */
.badge-success {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: #ffffff;
    border-color: #228b22;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.3);
}

.badge-success:hover {
    background: linear-gradient(135deg, #1e7e1e, #228b22);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.4);
    transform: translateY(-1px);
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: #ffffff;
    border-color: #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.badge-danger:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transform: translateY(-1px);
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    border-color: #ffc107;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.badge-warning:hover {
    background: linear-gradient(135deg, #e0a800, #ffc107);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    transform: translateY(-1px);
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: #ffffff;
    border-color: #17a2b8;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

.badge-info:hover {
    background: linear-gradient(135deg, #138496, #17a2b8);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
    transform: translateY(-1px);
}

/* Earth Tones - Matching Your Theme */
.badge-bronze {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: #ffffff;
    border-color: #cd7f32;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.badge-bronze:hover {
    background: linear-gradient(135deg, #b8732d, #cd7f32);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
    transform: translateY(-1px);
}

.badge-copper {
    background: linear-gradient(135deg, #b87333, #cd853f);
    color: #ffffff;
    border-color: #b87333;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

.badge-copper:hover {
    background: linear-gradient(135deg, #a0632d, #b87333);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.4);
    transform: translateY(-1px);
}

.badge-amber {
    background: linear-gradient(135deg, #ffbf00, #ffa500);
    color: #212529;
    border-color: #ffbf00;
    box-shadow: 0 2px 8px rgba(255, 191, 0, 0.3);
}

.badge-amber:hover {
    background: linear-gradient(135deg, #e6ac00, #ffbf00);
    box-shadow: 0 4px 12px rgba(255, 191, 0, 0.4);
    transform: translateY(-1px);
}

.badge-rust {
    background: linear-gradient(135deg, #b7410e, #d2691e);
    color: #ffffff;
    border-color: #b7410e;
    box-shadow: 0 2px 8px rgba(183, 65, 14, 0.3);
}

.badge-rust:hover {
    background: linear-gradient(135deg, #a0390c, #b7410e);
    box-shadow: 0 4px 12px rgba(183, 65, 14, 0.4);
    transform: translateY(-1px);
}

/* Neutral Colors */
.badge-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    border-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-light:hover {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.badge-dark {
    background: linear-gradient(135deg, #343a40, #495057);
    color: #ffffff;
    border-color: #343a40;
    box-shadow: 0 2px 8px rgba(52, 58, 64, 0.3);
}

.badge-dark:hover {
    background: linear-gradient(135deg, #23272b, #343a40);
    box-shadow: 0 4px 12px rgba(52, 58, 64, 0.4);
    transform: translateY(-1px);
}

.badge-muted {
    background: linear-gradient(135deg, #6c757d, #868e96);
    color: #ffffff;
    border-color: #6c757d;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.badge-muted:hover {
    background: linear-gradient(135deg, #5a6268, #6c757d);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
    transform: translateY(-1px);
}

/* Outline Variants */
.badge-outline-primary {
    background: transparent;
    color: #b8860b;
    border-color: #b8860b;
}

.badge-outline-primary:hover {
    background: #b8860b;
    color: #ffffff;
}

.badge-outline-secondary {
    background: transparent;
    color: #cd853f;
    border-color: #cd853f;
}

.badge-outline-secondary:hover {
    background: #cd853f;
    color: #ffffff;
}

.badge-outline-success {
    background: transparent;
    color: #228b22;
    border-color: #228b22;
}

.badge-outline-success:hover {
    background: #228b22;
    color: #ffffff;
}

.badge-outline-danger {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.badge-outline-danger:hover {
    background: #dc3545;
    color: #ffffff;
}

.badge-outline-warning {
    background: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.badge-outline-warning:hover {
    background: #ffc107;
    color: #212529;
}

.badge-outline-info {
    background: transparent;
    color: #17a2b8;
    border-color: #17a2b8;
}

.badge-outline-info:hover {
    background: #17a2b8;
    color: #ffffff;
}

.badge-outline-bronze {
    background: transparent;
    color: #cd7f32;
    border-color: #cd7f32;
}

.badge-outline-bronze:hover {
    background: #cd7f32;
    color: #ffffff;
}

.badge-outline-copper {
    background: transparent;
    color: #b87333;
    border-color: #b87333;
}

.badge-outline-copper:hover {
    background: #b87333;
    color: #ffffff;
}

.badge-outline-amber {
    background: transparent;
    color: #ffbf00;
    border-color: #ffbf00;
}

.badge-outline-amber:hover {
    background: #ffbf00;
    color: #212529;
}

.badge-outline-rust {
    background: transparent;
    color: #b7410e;
    border-color: #b7410e;
}

.badge-outline-rust:hover {
    background: #b7410e;
    color: #ffffff;
}

.badge-outline-light {
    background: transparent;
    color: #6c757d;
    border-color: #dee2e6;
}

.badge-outline-light:hover {
    background: #f8f9fa;
    color: #495057;
}

.badge-outline-dark {
    background: transparent;
    color: #343a40;
    border-color: #343a40;
}

.badge-outline-dark:hover {
    background: #343a40;
    color: #ffffff;
}

.badge-outline-muted {
    background: transparent;
    color: #6c757d;
    border-color: #6c757d;
}

.badge-outline-muted:hover {
    background: #6c757d;
    color: #ffffff;
}

/* Soft/Subtle Variants */
.badge-soft-primary {
    background: rgba(184, 134, 11, 0.1);
    color: #b8860b;
    border-color: rgba(184, 134, 11, 0.2);
}

.badge-soft-primary:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: rgba(184, 134, 11, 0.3);
}

.badge-soft-secondary {
    background: rgba(205, 133, 63, 0.1);
    color: #cd853f;
    border-color: rgba(205, 133, 63, 0.2);
}

.badge-soft-secondary:hover {
    background: rgba(205, 133, 63, 0.2);
    border-color: rgba(205, 133, 63, 0.3);
}

.badge-soft-success {
    background: rgba(34, 139, 34, 0.1);
    color: #228b22;
    border-color: rgba(34, 139, 34, 0.2);
}

.badge-soft-success:hover {
    background: rgba(34, 139, 34, 0.2);
    border-color: rgba(34, 139, 34, 0.3);
}

.badge-soft-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
}

.badge-soft-danger:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.3);
}

.badge-soft-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

.badge-soft-warning:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

.badge-soft-info {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-color: rgba(23, 162, 184, 0.2);
}

.badge-soft-info:hover {
    background: rgba(23, 162, 184, 0.2);
    border-color: rgba(23, 162, 184, 0.3);
}

/* Special Badges */
.badge-gradient-gold {
    background: linear-gradient(45deg, #ffd700, #ffb347, #daa520);
    color: #212529;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.badge-gradient-gold:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.badge-gradient-bronze {
    background: linear-gradient(45deg, #cd7f32, #b8860b, #8b4513);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

.badge-gradient-bronze:hover {
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.6);
    transform: translateY(-2px);
}

.badge-gradient-earth {
    background: linear-gradient(45deg, #8b4513, #a0522d, #cd853f);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.badge-gradient-earth:hover {
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
    transform: translateY(-2px);
}

/* Badge with Icons */
.badge-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.badge-with-icon i,
.badge-with-icon svg {
    width: 1em;
    height: 1em;
}

/* Pill Badges */
.badge-pill {
    border-radius: 50rem;
}

/* Rounded Badges */
.badge-rounded {
    border-radius: 0.75rem;
}

/* Square Badges */
.badge-square {
    border-radius: 0.25rem;
}

/* No Border Radius */
.badge-sharp {
    border-radius: 0;
}

/* Animated Badges */
.badge-pulse {
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(184, 134, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
    }
}

.badge-glow {
    animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    from {
        box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
    }
    to {
        box-shadow: 0 4px 20px rgba(184, 134, 11, 0.6);
    }
}

/* Responsive Badges */
@media (max-width: 768px) {
    .badge {
        font-size: 0.75rem;
        padding: 0.3125rem 0.625rem;
    }
    
    .badge-lg {
        font-size: 0.875rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .badge-xl {
        font-size: 0.975rem;
        padding: 0.2rem 1rem;
    }
}

@media (max-width: 480px) {
    .badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
    .badge-lg {
        font-size: 0.75rem;
        padding: 0.3125rem 0.625rem;
    }
    
    .badge-xl {
        font-size: 0.875rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .badge-with-icon {
        gap: 0.25rem;
    }
}

/* Utility Classes */
.badge-block {
    display: block;
    width: 100%;
    text-align: center;
}

.badge-inline {
    display: inline;
}

.badge-no-hover:hover {
    transform: none;
    box-shadow: inherit;
}

.badge-clickable {
    cursor: pointer;
    user-select: none;
}

.badge-clickable:active {
    transform: translateY(1px);
}

/* Bootstrap 5 Compatible Grid System */

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .blog-container {
        gap: 2rem;
    }
    
    .blog-main {
        padding: 1.5rem;
    }
    
    .navbar-nav {
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-content {
        padding: 1.25rem;
    }
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .statistics-bg-image {
        width: 60%;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }

    /* Tombol Toggle Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Menu Mobile */
    .navbar-nav {
        position: fixed;
        top: 60px; /* tinggi navbar */
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        border-top: 1px solid #333;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-110vh); /* pastikan keluar layar */
        transition: transform 0.3s ease;
        z-index: 9999;

        /* Fix scroll di HP */
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Menu saat aktif */
    .navbar-nav.active {
        transform: translateY(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        justify-content: space-between;
        color: #fff;
    }

    /* Dropdown Menu Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #333;
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 200px;
        overflow-y: auto;
    }

    .dropdown-item {
        padding: 0.75rem 3rem;
        color: #fff;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .features {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .blog-main {
        padding: 0.75rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-share {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .trending-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trending-image {
        width: 100%;
        height: 120px;
        align-self: center;
    }
    
    .widget {
        padding: 0.75rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .code-section {
        padding: 1rem;
    }
    
    .code-block {
        padding: 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .feature-image-container {
        height: 160px;
    }
    
    .feature-content {
        padding: 0.75rem;
    }
    
    .feature-date {
        bottom: 10px;
        left: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .feature-tags {
        gap: 0.25rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .statistics-header {
        margin-bottom: 2rem;
    }
    
    .statistics-bg-image {
        display: none;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    
    .categories-grid {
        margin-bottom: 2rem;
    }
    
    .category-item {
        padding: 1.25rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .category-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .btn-outline {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .social-btn {
        min-width: auto;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
    .footer-buttons .btn {
        width: 100%;
    }
}

/* Desktop Only Effects */
@media (min-width: 769px) {
    .magnetic:hover {
        transform: scale(1.05);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .social-share,
    .custom-cursor,
    .mouse-bubble {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
        cursor: auto !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
    .feature-card {
        background-color: #1a1a1a;
        border-color: #333;
        color: #ffffff;
    }
    
    .feature-title {
        color: #ffffff;
    }
    
    .feature-author {
        color: #888888;
    }
    
    .feature-tag {
        background-color: #333;
        color: #ffffff;
        border-color: #555;
    }
    .form-control {
        background-color: #2a2a2a;
        border-color: #444;
        color: #ffffff;
    }
    
    .form-control::placeholder {
        color: #888;
    }
    
    .form-label {
        color: #ffffff;
    }
    
    .divider span {
        background-color: #1a1a1a;
        color: #888;
    }
    
    .social-btn {
        background-color: #2a2a2a;
        border-color: #444;
        color: #ffffff;
    }
    .select2-container--default .select2-selection--single {
        background-color: #2d3748;
        border-color: #4a5568;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #e2e8f0;
    }
    
    .select2-dropdown {
        background-color: #2d3748;
        border-color: #b8860b;
    }
    
    .select2-search--dropdown {
        background: linear-gradient(135deg, #1a202c, #2d3748);
        border-bottom-color: #4a5568;
    }
    
    .select2-search--dropdown .select2-search__field {
        background-color: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .select2-results__option {
        color: #e2e8f0;
    }
}


/* Animation for dropdown opening */
.select2-dropdown {
    animation: select2-dropdown-fade-in 0.2s ease-out;
}

@keyframes select2-dropdown-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar for results */
.select2-results::-webkit-scrollbar {
    width: 6px;
}

.select2-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.select2-results::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 3px;
}

.select2-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #9a7209, #b8860b);
}

/* Fix for modal z-index issues */
.select2-container--open {
    z-index: 9999;
}

.select2-dropdown {
    z-index: 9999;
}

/* Loading spinner */
.select2-results__option--loading-results::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #b8860b;
    border-radius: 50%;
    border-top-color: transparent;
    animation: select2-spin 1s linear infinite;
}

@keyframes select2-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced focus states for accessibility */
.select2-container--default .select2-selection--single:focus-within {
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.select2-results__option:focus {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    outline: 2px solid #8b4513;
    outline-offset: -2px;
}
/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for better interactivity */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Particles Animation */
.statistics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Loading animation for stats */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Loading Animation */
.category-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.category-item:nth-child(1) { animation-delay: 0.1s; }
.category-item:nth-child(2) { animation-delay: 0.2s; }
.category-item:nth-child(3) { animation-delay: 0.3s; }
.category-item:nth-child(4) { animation-delay: 0.4s; }
.category-item:nth-child(5) { animation-delay: 0.5s; }
.category-item:nth-child(6) { animation-delay: 0.6s; }


.category-icon {
    animation: float 6s ease-in-out infinite;
}

.category-item:nth-child(even) .category-icon {
    animation-delay: -3s;
}

/* ===================================
   SELECT2 CUSTOM STYLING - SIP PBBKU THEME
   ===================================
   Custom styling for Select2 to match golden/brown theme
*/

/* Select2 Container */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background-color: #ffffff;
    border: 2px solid #ddd;
    border-radius: 8px;
    height: 45px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    vertical-align: top;
}

.select2-container--default .select2-selection--single:hover {
    border-color: #b8860b;
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.2);
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    outline: none;
}

/* Selection Text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333333;
    line-height: 1.4;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 15px;
    padding-right: 35px;
    font-size: 14px;
    font-weight: 500;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999999;
    font-style: italic;
}

/* Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #b8860b transparent transparent transparent;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    height: 0;
    left: 50%;
    margin-left: -6px;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #b8860b transparent;
    border-width: 0 6px 6px 6px;
}

/* Dropdown */
.select2-dropdown {
    background-color: #ffffff;
    border: 2px solid #b8860b;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.select2-container--default .select2-dropdown {
    border-color: #b8860b;
}

/* Search Box */
.select2-search--dropdown {
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
}

.select2-search--dropdown .select2-search__field {
    background-color: #ffffff;
    border: 2px solid #ddd;
    border-radius: 6px;
    color: #333333;
    font-size: 14px;
    padding: 8px 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
    outline: none;
}

/* Results */
.select2-results {
    max-height: 250px;
    overflow-y: auto;
}

.select2-results__options {
    padding: 5px 0;
}

.select2-results__option {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.select2-results__option:hover,
.select2-results__option--highlighted {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    border-left-color: #8b4513;
}

.select2-results__option[aria-selected="true"] {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    color: #ffffff;
    border-left-color: #8b4513;
    font-weight: 600;
}

.select2-results__option[aria-selected="true"]:hover {
    background: linear-gradient(135deg, #b8732d, #cd853f);
}

/* Loading */
.select2-results__option--loading-more,
.select2-results__option--loading-results {
    color: #666666;
    font-style: italic;
    text-align: center;
    padding: 15px;
}

/* No Results */
.select2-results__message {
    color: #666666;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

/* Disabled State */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #dee2e6;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #6c757d;
}

/* Multiple Select Styling */
.select2-container--default .select2-selection--multiple {
    background-color: #ffffff;
    border: 2px solid #ddd;
    border-radius: 8px;
    min-height: 45px;
    padding: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-selection--multiple:hover {
    border-color: #b8860b;
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.2);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #b8860b;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

/* Multiple Selection Tags */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(135deg, #b8860b, #daa520);
    border: 1px solid #b8860b;
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin: 2px 5px 2px 0;
    padding: 4px 8px;
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 5px;
    transition: color 0.2s ease;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffffff;
}

/* Search in Multiple */
.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    color: #333333;
    font-size: 14px;
    margin-top: 5px;
    padding: 0;
    min-width: 150px;
}

.select2-container--default .select2-search--inline .select2-search__field:focus {
    outline: none;
}

/* Modal Backdrop */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show {
  display: block;
}

.modal::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show::before {
  opacity: 1;
}

/* Modal Dialog */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 500px;
  pointer-events: none;
  transform: scale(0.8) translateY(-50px);
  transition: all 0.3s ease;
  opacity: 0;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.modal-sm {
  max-width: 300px;
}

.modal-lg {
  max-width: 800px;
}

.modal-xl {
  max-width: 1140px;
}

/* Modal Content */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3f51b5, #ffd700, #3f51b5);
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(63, 81, 181, 0.1), rgba(255, 215, 0, 0.05));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
}

.btn-close {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #666;
  border-radius: 1px;
  transition: background 0.3s ease;
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

.btn-close:hover {
  background: rgba(220, 53, 69, 0.1);
  transform: scale(1.1);
}

.btn-close:hover::before,
.btn-close:hover::after {
  background: #dc3545;
}

/* Modal Body */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 2rem;
  color: #333;
  line-height: 1.6;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #3f51b5, #5c6bc0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.modal-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.modal-icon.success {
  background: linear-gradient(135deg, #28a745, #34ce57);
}

.modal-icon.warning {
  background: linear-gradient(135deg, #ffc107, #ffcd39);
}

.modal-icon.warning svg {
  color: #000000;
}

.modal-icon.danger {
  background: linear-gradient(135deg, #dc3545, #e4606d);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.modal-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(63, 81, 181, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3f51b5;
}

.feature-icon {
  font-size: 1.2rem;
}

.alert-details {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  font-size: 0.9rem;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Modal Variants */
.modal-success .modal-content::before {
  background: linear-gradient(90deg, #28a745, #34ce57, #28a745);
}

.modal-warning .modal-content::before {
  background: linear-gradient(90deg, #ffc107, #ffcd39, #ffc107);
}

.modal-danger .modal-content::before {
  background: linear-gradient(90deg, #dc3545, #e4606d, #dc3545);
}

/* Fade Animation */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Text Center */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem 1.5rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-icon svg {
        width: 30px;
        height: 30px;
    }

    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
  
    .select2-container--default .select2-selection--single {
        height: 42px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 1.4; /* bukan 38px */
        display: flex;
        align-items: center;
        height: 100%;
        font-size: 13px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px;
    }
    
    .select2-results__option {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .select2-dropdown {
        border-radius: 0 0 6px 6px;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }
  
    .select2-container--default .select2-selection--single {
        height: 40px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
        padding-left: 12px;
        line-height: 1.4; /* bukan 36px */
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 36px;
        right: 8px;
    }
    
    .select2-results__option {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .select2-search--dropdown {
        padding: 8px;
    }
    
    .select2-search--dropdown .select2-search__field {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Magnetic Effect */
.magnetic {
  transition: transform 0.3s ease;
}

.magnetic:hover {
  transform: translateY(-2px) scale(1.02);
}



/* Container Override for Hero Section */
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .hero .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 3.5vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Additional Particle Styles */
.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: 1s; }
.particle:nth-child(3) { animation-delay: 2s; }
.particle:nth-child(4) { animation-delay: 3s; }
.particle:nth-child(5) { animation-delay: 4s; }
.particle:nth-child(6) { animation-delay: 5s; }

/* Enhanced Particle Animation */
.particle {
    animation: floatEnhanced 8s ease-in-out infinite;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) translateX(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-10px) translateX(-15px) rotate(270deg);
        opacity: 1;
    }
}

/* Glow Effect for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Bootstrap 5 Spacing Utilities */
/* Spacing scale: 0=0rem, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem */

/* ===== MARGIN UTILITIES ===== */

/* Margin - All sides */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* Margin Start (Left) */
.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

/* Margin End (Right) */
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

/* Margin X-axis (Left & Right) */
.mx-0 { 
  margin-left: 0 !important; 
  margin-right: 0 !important; 
}
.mx-1 { 
  margin-left: 0.25rem !important; 
  margin-right: 0.25rem !important; 
}
.mx-2 { 
  margin-left: 0.5rem !important; 
  margin-right: 0.5rem !important; 
}
.mx-3 { 
  margin-left: 1rem !important; 
  margin-right: 1rem !important; 
}
.mx-4 { 
  margin-left: 1.5rem !important; 
  margin-right: 1.5rem !important; 
}
.mx-5 { 
  margin-left: 3rem !important; 
  margin-right: 3rem !important; 
}

/* Margin Y-axis (Top & Bottom) */
.my-0 { 
  margin-top: 0 !important; 
  margin-bottom: 0 !important; 
}
.my-1 { 
  margin-top: 0.25rem !important; 
  margin-bottom: 0.25rem !important; 
}
.my-2 { 
  margin-top: 0.5rem !important; 
  margin-bottom: 0.5rem !important; 
}
.my-3 { 
  margin-top: 1rem !important; 
  margin-bottom: 1rem !important; 
}
.my-4 { 
  margin-top: 1.5rem !important; 
  margin-bottom: 1.5rem !important; 
}
.my-5 { 
  margin-top: 3rem !important; 
  margin-bottom: 3rem !important; 
}

/* ===== MARGIN AUTO ===== */

/* Margin Auto - All sides */
.m-auto { margin: auto !important; }

/* Margin Auto - Individual sides */
.mt-auto { margin-top: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }

/* Margin Auto - X & Y axis */
.mx-auto { 
  margin-left: auto !important; 
  margin-right: auto !important; 
}
.my-auto { 
  margin-top: auto !important; 
  margin-bottom: auto !important; 
}

/* ===== PADDING UTILITIES ===== */

/* Padding - All sides */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

/* Padding Start (Left) */
.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: 0.25rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-5 { padding-left: 3rem !important; }

/* Padding End (Right) */
.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: 0.25rem !important; }
.pe-2 { padding-right: 0.5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.pe-5 { padding-right: 3rem !important; }

/* Padding X-axis (Left & Right) */
.px-0 { 
  padding-left: 0 !important; 
  padding-right: 0 !important; 
}
.px-1 { 
  padding-left: 0.25rem !important; 
  padding-right: 0.25rem !important; 
}
.px-2 { 
  padding-left: 0.5rem !important; 
  padding-right: 0.5rem !important; 
}
.px-3 { 
  padding-left: 1rem !important; 
  padding-right: 1rem !important; 
}
.px-4 { 
  padding-left: 1.5rem !important; 
  padding-right: 1.5rem !important; 
}
.px-5 { 
  padding-left: 3rem !important; 
  padding-right: 3rem !important; 
}

/* Padding Y-axis (Top & Bottom) */
.py-0 { 
  padding-top: 0 !important; 
  padding-bottom: 0 !important; 
}
.py-1 { 
  padding-top: 0.25rem !important; 
  padding-bottom: 0.25rem !important; 
}
.py-2 { 
  padding-top: 0.5rem !important; 
  padding-bottom: 0.5rem !important; 
}
.py-3 { 
  padding-top: 1rem !important; 
  padding-bottom: 1rem !important; 
}
.py-4 { 
  padding-top: 1.5rem !important; 
  padding-bottom: 1.5rem !important; 
}
.py-5 { 
  padding-top: 3rem !important; 
  padding-bottom: 3rem !important; 
}

/* ===== RESPONSIVE SPACING UTILITIES ===== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  /* Margin utilities - sm */
  .m-sm-0 { margin: 0 !important; }
  .m-sm-1 { margin: 0.25rem !important; }
  .m-sm-2 { margin: 0.5rem !important; }
  .m-sm-3 { margin: 1rem !important; }
  .m-sm-4 { margin: 1.5rem !important; }
  .m-sm-5 { margin: 3rem !important; }
  .m-sm-auto { margin: auto !important; }

  .mt-sm-0 { margin-top: 0 !important; }
  .mt-sm-1 { margin-top: 0.25rem !important; }
  .mt-sm-2 { margin-top: 0.5rem !important; }
  .mt-sm-3 { margin-top: 1rem !important; }
  .mt-sm-4 { margin-top: 1.5rem !important; }
  .mt-sm-5 { margin-top: 3rem !important; }
  .mt-sm-auto { margin-top: auto !important; }

  .mb-sm-0 { margin-bottom: 0 !important; }
  .mb-sm-1 { margin-bottom: 0.25rem !important; }
  .mb-sm-2 { margin-bottom: 0.5rem !important; }
  .mb-sm-3 { margin-bottom: 1rem !important; }
  .mb-sm-4 { margin-bottom: 1.5rem !important; }
  .mb-sm-5 { margin-bottom: 3rem !important; }
  .mb-sm-auto { margin-bottom: auto !important; }

  .ms-sm-0 { margin-left: 0 !important; }
  .ms-sm-1 { margin-left: 0.25rem !important; }
  .ms-sm-2 { margin-left: 0.5rem !important; }
  .ms-sm-3 { margin-left: 1rem !important; }
  .ms-sm-4 { margin-left: 1.5rem !important; }
  .ms-sm-5 { margin-left: 3rem !important; }
  .ms-sm-auto { margin-left: auto !important; }

  .me-sm-0 { margin-right: 0 !important; }
  .me-sm-1 { margin-right: 0.25rem !important; }
  .me-sm-2 { margin-right: 0.5rem !important; }
  .me-sm-3 { margin-right: 1rem !important; }
  .me-sm-4 { margin-right: 1.5rem !important; }
  .me-sm-5 { margin-right: 3rem !important; }
  .me-sm-auto { margin-right: auto !important; }

  .mx-sm-0 { margin-left: 0 !important; margin-right: 0 !important; }
  .mx-sm-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
  .mx-sm-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
  .mx-sm-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
  .mx-sm-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
  .mx-sm-5 { margin-left: 3rem !important; margin-right: 3rem !important; }
  .mx-sm-auto { margin-left: auto !important; margin-right: auto !important; }

  .my-sm-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .my-sm-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
  .my-sm-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
  .my-sm-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .my-sm-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .my-sm-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .my-sm-auto { margin-top: auto !important; margin-bottom: auto !important; }

  /* Padding utilities - sm */
  .p-sm-0 { padding: 0 !important; }
  .p-sm-1 { padding: 0.25rem !important; }
  .p-sm-2 { padding: 0.5rem !important; }
  .p-sm-3 { padding: 1rem !important; }
  .p-sm-4 { padding: 1.5rem !important; }
  .p-sm-5 { padding: 3rem !important; }

  .pt-sm-0 { padding-top: 0 !important; }
  .pt-sm-1 { padding-top: 0.25rem !important; }
  .pt-sm-2 { padding-top: 0.5rem !important; }
  .pt-sm-3 { padding-top: 1rem !important; }
  .pt-sm-4 { padding-top: 1.5rem !important; }
  .pt-sm-5 { padding-top: 3rem !important; }

  .pb-sm-0 { padding-bottom: 0 !important; }
  .pb-sm-1 { padding-bottom: 0.25rem !important; }
  .pb-sm-2 { padding-bottom: 0.5rem !important; }
  .pb-sm-3 { padding-bottom: 1rem !important; }
  .pb-sm-4 { padding-bottom: 1.5rem !important; }
  .pb-sm-5 { padding-bottom: 3rem !important; }

  .ps-sm-0 { padding-left: 0 !important; }
  .ps-sm-1 { padding-left: 0.25rem !important; }
  .ps-sm-2 { padding-left: 0.5rem !important; }
  .ps-sm-3 { padding-left: 1rem !important; }
  .ps-sm-4 { padding-left: 1.5rem !important; }
  .ps-sm-5 { padding-left: 3rem !important; }

  .pe-sm-0 { padding-right: 0 !important; }
  .pe-sm-1 { padding-right: 0.25rem !important; }
  .pe-sm-2 { padding-right: 0.5rem !important; }
  .pe-sm-3 { padding-right: 1rem !important; }
  .pe-sm-4 { padding-right: 1.5rem !important; }
  .pe-sm-5 { padding-right: 3rem !important; }

  .px-sm-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .px-sm-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .px-sm-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .px-sm-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .px-sm-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .px-sm-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

  .py-sm-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-sm-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-sm-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-sm-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-sm-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-sm-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .m-md-0 { margin: 0 !important; }
  .m-md-1 { margin: 0.25rem !important; }
  .m-md-2 { margin: 0.5rem !important; }
  .m-md-3 { margin: 1rem !important; }
  .m-md-4 { margin: 1.5rem !important; }
  .m-md-5 { margin: 3rem !important; }
  .m-md-auto { margin: auto !important; }

  .mx-md-auto { margin-left: auto !important; margin-right: auto !important; }
  .my-md-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .p-md-0 { padding: 0 !important; }
  .p-md-1 { padding: 0.25rem !important; }
  .p-md-2 { padding: 0.5rem !important; }
  .p-md-3 { padding: 1rem !important; }
  .p-md-4 { padding: 1.5rem !important; }
  .p-md-5 { padding: 3rem !important; }

  .px-md-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .px-md-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .px-md-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .px-md-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .px-md-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .px-md-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

  .py-md-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-md-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-md-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-md-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-md-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-md-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .m-lg-0 { margin: 0 !important; }
  .m-lg-1 { margin: 0.25rem !important; }
  .m-lg-2 { margin: 0.5rem !important; }
  .m-lg-3 { margin: 1rem !important; }
  .m-lg-4 { margin: 1.5rem !important; }
  .m-lg-5 { margin: 3rem !important; }
  .m-lg-auto { margin: auto !important; }

  .mx-lg-auto { margin-left: auto !important; margin-right: auto !important; }
  .my-lg-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .p-lg-0 { padding: 0 !important; }
  .p-lg-1 { padding: 0.25rem !important; }
  .p-lg-2 { padding: 0.5rem !important; }
  .p-lg-3 { padding: 1rem !important; }
  .p-lg-4 { padding: 1.5rem !important; }
  .p-lg-5 { padding: 3rem !important; }

  .px-lg-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .px-lg-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .px-lg-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .px-lg-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .px-lg-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .px-lg-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

  .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-lg-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-lg-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-lg-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-lg-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-lg-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .m-xl-0 { margin: 0 !important; }
  .m-xl-1 { margin: 0.25rem !important; }
  .m-xl-2 { margin: 0.5rem !important; }
  .m-xl-3 { margin: 1rem !important; }
  .m-xl-4 { margin: 1.5rem !important; }
  .m-xl-5 { margin: 3rem !important; }
  .m-xl-auto { margin: auto !important; }

  .mx-xl-auto { margin-left: auto !important; margin-right: auto !important; }
  .my-xl-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .p-xl-0 { padding: 0 !important; }
  .p-xl-1 { padding: 0.25rem !important; }
  .p-xl-2 { padding: 0.5rem !important; }
  .p-xl-3 { padding: 1rem !important; }
  .p-xl-4 { padding: 1.5rem !important; }
  .p-xl-5 { padding: 3rem !important; }

  .px-xl-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .px-xl-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .px-xl-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .px-xl-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .px-xl-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .px-xl-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

  .py-xl-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-xl-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-xl-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-xl-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-xl-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-xl-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* Extra extra large devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .m-xxl-0 { margin: 0 !important; }
  .m-xxl-1 { margin: 0.25rem !important; }
  .m-xxl-2 { margin: 0.5rem !important; }
  .m-xxl-3 { margin: 1rem !important; }
  .m-xxl-4 { margin: 1.5rem !important; }
  .m-xxl-5 { margin: 3rem !important; }
  .m-xxl-auto { margin: auto !important; }

  .mx-xxl-auto { margin-left: auto !important; margin-right: auto !important; }
  .my-xxl-auto { margin-top: auto !important; margin-bottom: auto !important; }

  .p-xxl-0 { padding: 0 !important; }
  .p-xxl-1 { padding: 0.25rem !important; }
  .p-xxl-2 { padding: 0.5rem !important; }
  .p-xxl-3 { padding: 1rem !important; }
  .p-xxl-4 { padding: 1.5rem !important; }
  .p-xxl-5 { padding: 3rem !important; }

  .px-xxl-0 { padding-left: 0 !important; padding-right: 0 !important; }
  .px-xxl-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .px-xxl-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
  .px-xxl-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .px-xxl-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .px-xxl-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

  .py-xxl-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .py-xxl-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
  .py-xxl-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
  .py-xxl-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .py-xxl-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-xxl-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .footer, .custom-cursor, .mouse-bubble {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
        cursor: auto !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
    .badge {
        background: transparent !important;
        color: #000 !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}
/* ===================================
   BUTTON SYSTEM - SIP PBBKU THEME
   ===================================
   Complete button system with golden/brown theme
*/

/* Base Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn:not(:disabled):not(.disabled):active {
  transform: translateY(0);
}

/* Button Sizes */
.btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 10px;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 12px;
}

/* Primary Button */
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-color: #b8860b;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9a7209, #b8860b);
  border-color: #9a7209;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  color: #ffffff;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.5);
}

.btn-primary:active {
  background: linear-gradient(135deg, #8b6508, #9a7209);
  border-color: #8b6508;
}

/* Secondary Button */
.btn-secondary {
  color: #ffffff;
  background: linear-gradient(135deg, #cd853f, #d2691e);
  border-color: #cd853f;
  box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #b8732d, #cd853f);
  border-color: #b8732d;
  box-shadow: 0 6px 20px rgba(205, 133, 63, 0.4);
  color: #ffffff;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(205, 133, 63, 0.5);
}

/* Success Button */
.btn-success {
  color: #ffffff;
  background: linear-gradient(135deg, #228b22, #32cd32);
  border-color: #228b22;
  box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #1e7e1e, #228b22);
  border-color: #1e7e1e;
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
  color: #ffffff;
}

.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.5);
}

/* Danger Button */
.btn-danger {
  color: #ffffff;
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  border-color: #dc3545;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c82333, #dc3545);
  border-color: #c82333;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
  color: #ffffff;
}

.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* Warning Button */
.btn-warning {
  color: #212529;
  background: linear-gradient(135deg, #ffc107, #ffb300);
  border-color: #ffc107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
  background: linear-gradient(135deg, #e0a800, #ffc107);
  border-color: #e0a800;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: #212529;
}

.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* Info Button */
.btn-info {
  color: #ffffff;
  background: linear-gradient(135deg, #17a2b8, #20c997);
  border-color: #17a2b8;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
  background: linear-gradient(135deg, #138496, #17a2b8);
  border-color: #138496;
  box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
  color: #ffffff;
}

.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* Light Button */
.btn-light {
  color: #495057;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-color: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  border-color: #e9ecef;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #495057;
}

.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* Dark Button */
.btn-dark {
  color: #ffffff;
  background: linear-gradient(135deg, #343a40, #495057);
  border-color: #343a40;
  box-shadow: 0 4px 15px rgba(52, 58, 64, 0.3);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #23272b, #343a40);
  border-color: #23272b;
  box-shadow: 0 6px 20px rgba(52, 58, 64, 0.4);
  color: #ffffff;
}

.btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* Outline Button Variants */
.btn-outline-primary {
  color: #b8860b;
  border-color: #b8860b;
  background-color: transparent;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-color: #b8860b;
}

.btn-outline-secondary {
  color: #cd853f;
  border-color: #cd853f;
  background-color: transparent;
}

.btn-outline-secondary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #cd853f, #d2691e);
  border-color: #cd853f;
}

.btn-outline-success {
  color: #228b22;
  border-color: #228b22;
  background-color: transparent;
}

.btn-outline-success:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #228b22, #32cd32);
  border-color: #228b22;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  border-color: #dc3545;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:hover {
  color: #212529;
  background: linear-gradient(135deg, #ffc107, #ffb300);
  border-color: #ffc107;
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #17a2b8, #20c997);
  border-color: #17a2b8;
}

.btn-outline-light {
  color: #6c757d;
  border-color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:hover {
  color: #495057;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-color: #f8f9fa;
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #343a40, #495057);
  border-color: #343a40;
}

/* Button Block */
.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* Button Group */
.btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn:not(:first-child) {
  margin-left: -2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active {
  z-index: 1;
}

/* Button with Icons */
.btn i {
  margin-right: 0.5rem;
  font-size: 0.9em;
}

.btn i:last-child {
  margin-right: 0;
  margin-left: 0.5rem;
}

.btn i:only-child {
  margin: 0;
}

/* Loading Button */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-loading-spin 1s linear infinite;
}

@keyframes btn-loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-loading .btn-text {
  opacity: 0;
}

/* Floating Action Button */
.btn-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-fab:hover {
  transform: scale(1.1);
}

/* Responsive Buttons */
@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .btn-lg {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }

  .btn-xl {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group > .btn:not(:first-child) {
    margin-left: 0;
    margin-top: -2px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .btn-group > .btn:not(:last-child) {
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .btn i {
    margin-right: 0.3rem;
  }

  .btn i:last-child {
    margin-left: 0.3rem;
    margin-right: 0;
  }

  .btn-fab {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* Print Styles */
@media print {
  .btn {
    border: 1px solid #000 !important;
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  .btn-fab {
    display: none !important;
  }
}

/* Accessibility */
.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid #b8860b;
  outline-offset: 2px;
}

/* Button Animation Effects */
.btn-bounce:hover {
  animation: btn-bounce 0.6s ease;
}

@keyframes btn-bounce {
  0%,
  20%,
  60%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(-1px);
  }
}

.btn-pulse:hover {
  animation: btn-pulse 1s infinite;
}

@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(184, 134, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
  }
}

/* Input Group Integration */
.input-group {
  display: flex;
  width: 100%;
  position: relative; /* Penting untuk z-index pada hover/focus */
}

.input-group .form-control {
  flex: 1 1 auto; /* Memastikan input mengisi ruang yang tersedia */
  width: 1%; /* Penting untuk flex-basis */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none; /* Hilangkan border kanan untuk menyatu */
  z-index: 1; /* Pastikan input di atas border tombol */
}

.input-group .form-control:focus {
  z-index: 2; /* Pastikan input tetap di atas saat fokus */
}

.input-group-append {
  display: flex;
  margin-left: -2px; /* Overlap sedikit untuk menyatukan border */
  z-index: 1; /* Pastikan append di atas input saat tidak fokus */
}

.input-group-append .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none; /* Hilangkan border kiri untuk menyatu */
  z-index: 1; /* Pastikan tombol di atas input saat tidak fokus */
}

.input-group-append .btn:focus {
  z-index: 2; /* Pastikan tombol tetap di atas saat fokus */
}

/* Adjust base .btn border-radius to ensure it's overridden by input-group specific rules */
/* Adjust .form-control if it has a general border-radius that conflicts */
.form-control {
  border-radius: 8px; /* Ensure this is general, specific rules will override */
}

/* ===================================
   FORM CHECK & RADIO BUTTONS - SIP PBBKU THEME
   ===================================
   Custom styling for radio buttons to match the theme
*/

.form-check {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  position: absolute;
  left: 0;
  top: 0.25rem; /* Adjust vertical alignment */
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  vertical-align: top;
  background-color: #fff;
  border: 2px solid #ced4da;
  appearance: none; /* Hide default browser radio */
  border-radius: 50%; /* Make it round */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
  background-color: #b8860b; /* Golden color when checked */
  border-color: #b8860b; /* Golden border when checked */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); /* White dot */
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-check-input:focus {
  border-color: #daa520; /* Lighter golden on focus */
  box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25); /* Golden shadow on focus */
  outline: 0;
}

.form-check-input:disabled {
  background-color: #e9ecef;
  opacity: 0.65;
  cursor: not-allowed;
}

.form-check-label {
  margin-bottom: 0;
  color: #495057; /* Darker text color */
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 0.25rem; /* Space between input and label text */
  cursor: pointer;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0; /* Reset padding for inline */
  margin-right: 1rem; /* Space between inline items */
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.5rem; /* Space between inline input and label */
}

/* Adjust for font-weight-bold on label */
.form-label.font-weight-bold {
  font-weight: 700;
  color: #495057;
  margin-bottom: 0.5rem;
  display: block; /* Ensure it takes full width if needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-check-label {
    font-size: 0.85rem;
  }
  .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
  }
  .form-check {
    padding-left: 1.5rem;
  }
}


/* ===================================
   CARD SYSTEM - SIP PBBKU THEME
   ===================================
   Card components with golden/brown theme
*/

/* Base Card Styles */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
    border-color: rgba(184, 134, 11, 0.3);
}

/* Card Body */
.card-body {
    flex: 1 1 auto;
    padding: 1.5rem;
}

.card-body-sm {
    padding: 1rem;
}

.card-body-lg {
    padding: 2rem;
}

.card-body-xl {
    padding: 2.5rem;
}

/* Card Header */
.card-header {
    padding: 1rem 1.5rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-weight: 600;
    color: #8b4513;
}

.card-header-primary {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-header-secondary {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-header-success {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-header-danger {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-header-warning {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.card-header-info {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Card Footer */
.card-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #6c757d;
}

.card-footer-primary {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(218, 165, 32, 0.1));
    border-top-color: rgba(184, 134, 11, 0.2);
    color: #b8860b;
}

/* Card Title */
.card-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b4513;
    line-height: 1.3;
}

.card-title-sm {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-title-lg {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-title-xl {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

/* Card Subtitle */
.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
}

/* Card Text */
.card-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-text:last-child {
    margin-bottom: 0;
}

/* Card Link */
.card-link {
    color: #b8860b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #8b4513;
    text-decoration: underline;
}

.card-link + .card-link {
    margin-left: 1rem;
}

/* Card Image */
.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
    height: auto;
}

.card-img,
.card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-img,
.card-img-bottom {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    border-radius: 12px;
    color: #ffffff;
}

/* Card Variants */
.card-primary {
    border-color: #b8860b;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(218, 165, 32, 0.05));
}

.card-secondary {
    border-color: #cd853f;
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.05), rgba(210, 105, 30, 0.05));
}

.card-success {
    border-color: #228b22;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05), rgba(50, 205, 50, 0.05));
}

.card-danger {
    border-color: #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(231, 76, 60, 0.05));
}

.card-warning {
    border-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 179, 0, 0.05));
}

.card-info {
    border-color: #17a2b8;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.05), rgba(32, 201, 151, 0.05));
}

.card-light {
    border-color: #dee2e6;
    background-color: #f8f9fa;
}

.card-dark {
    border-color: #495057;
    background-color: #343a40;
    color: #ffffff;
}

.card-dark .card-title {
    color: #ffffff;
}

.card-dark .card-text {
    color: #e9ecef;
}

/* Card Outline Variants */
.card-outline-primary {
    background-color: transparent;
    border-color: #b8860b;
    border-width: 2px;
}

.card-outline-secondary {
    background-color: transparent;
    border-color: #cd853f;
    border-width: 2px;
}

.card-outline-success {
    background-color: transparent;
    border-color: #228b22;
    border-width: 2px;
}

.card-outline-danger {
    background-color: transparent;
    border-color: #dc3545;
    border-width: 2px;
}

.card-outline-warning {
    background-color: transparent;
    border-color: #ffc107;
    border-width: 2px;
}

.card-outline-info {
    background-color: transparent;
    border-color: #17a2b8;
    border-width: 2px;
}

/* Card Sizes */
.card-sm {
    border-radius: 8px;
}

.card-sm .card-header,
.card-sm .card-footer {
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.card-sm .card-body {
    padding: 1rem;
}

.card-lg {
    border-radius: 16px;
}

.card-lg .card-header,
.card-lg .card-footer {
    padding: 1.5rem 2rem;
    border-radius: 16px;
}

.card-lg .card-body {
    padding: 2rem;
}

.card-xl {
    border-radius: 20px;
}

.card-xl .card-header,
.card-xl .card-footer {
    padding: 2rem 2.5rem;
    border-radius: 20px;
}

.card-xl .card-body {
    padding: 2.5rem;
}

/* Card Special Effects */
.card-shadow {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-shadow-lg {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.card-glow {
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.card-glow:hover {
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.card-gradient {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.card-gradient-primary {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(218, 165, 32, 0.05));
}

.card-gradient-secondary {
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.1), rgba(210, 105, 30, 0.05));
}

/* Card with Icon */
.card-with-icon {
    position: relative;
    padding-top: 3rem;
}

.card-with-icon .card-icon {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.card-with-icon-left {
    padding-left: 4rem;
    padding-top: 1.5rem;
}

.card-with-icon-left .card-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    transform: none;
}

/* Card Stats */
.card-stats {
    text-align: center;
    padding: 2rem 1.5rem;
}

.card-stats .stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #b8860b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-stats .stats-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-stats .stats-change {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.card-stats .stats-change.positive {
    color: #228b22;
}

.card-stats .stats-change.negative {
    color: #dc3545;
}

/* Card Group */
.card-group {
    display: flex;
    flex-flow: row wrap;
}

.card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
}

.card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Card Deck */
.card-deck {
    display: flex;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .card-deck {
        flex-flow: row wrap;
        margin-right: -0.75rem;
        margin-left: -0.75rem;
    }
    
    .card-deck .card {
        flex: 1 0 0%;
        margin-right: 0.75rem;
        margin-bottom: 0;
        margin-left: 0.75rem;
    }
}

/* Card Columns */
.card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
}

.card-columns .card {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.25rem;
}

@media (max-width: 767.98px) {
    .card-columns {
        column-count: 1;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card-columns {
        column-count: 2;
    }
}

/* Responsive Cards */
@media (max-width: 768px) {
    .card {
        border-radius: 8px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-header,
    .card-footer {
        padding: 0.75rem 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-with-icon {
        padding-top: 2.5rem;
    }
    
    .card-with-icon .card-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        top: -1.25rem;
    }
    
    .card-with-icon-left {
        padding-left: 3.5rem;
    }
    
    .card-with-icon-left .card-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .card-stats .stats-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 0.75rem;
    }
    
    .card-header,
    .card-footer {
        padding: 0.5rem 0.75rem;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .card-stats {
        padding: 1.5rem 1rem;
    }
    
    .card-stats .stats-number {
        font-size: 1.75rem;
    }
    
    .card-group {
        flex-direction: column;
    }
    
    .card-group > .card:not(:last-child) {
        border-radius: 12px;
        border-right: 1px solid rgba(184, 134, 11, 0.2);
        margin-bottom: 1rem;
    }
    
    .card-group > .card:not(:first-child) {
        border-radius: 12px;
    }
}

/* Card Animation */
.card-fade-in {
    animation: cardFadeIn 0.5s ease-out;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-slide-up {
    animation: cardSlideUp 0.6s ease-out;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Loading State */
.card-loading {
    position: relative;
    overflow: hidden;
}

.card-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    animation: cardLoading 1.5s infinite;
}

@keyframes cardLoading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Print Styles */
@media print {
    .card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    
    .card-header,
    .card-footer {
        background: transparent !important;
        color: #000 !important;
    }
}
/* ===================================
   SMART TOOLTIP SYSTEM - SIP PBBKU THEME
   ===================================
   Auto-positioning tooltip with smart detection
*/

/* Info Icon Styling */
.info-icon {
    color: #333333; /* Hitam */
    margin-left: 8px;
    font-size: 14px;
    cursor: help;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.info-icon:hover {
    color: #dc3545; /* Merah saat hover */
    transform: scale(1.1);
}

/* Tooltip Container */
.tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

/* Base Tooltip Text */
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 280px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: #ffffff;
    text-align: left;
    border-radius: 8px;
    padding: 12px 15px;
    position: absolute;
    z-index: 9999;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
    
    /* Default: Posisi atas, agak ke kanan */
    bottom: 150%;
    left: -20px;
    transform: translateY(10px);
}

/* Tooltip Arrow - Default (Top) */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 40px;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #2d3748 transparent transparent transparent;
}

/* Show tooltip on hover */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
}

/* SMART POSITIONING CLASSES */

/* Auto-detect dan adjust posisi berdasarkan viewport */
.tooltip-container.auto-left .tooltip-text {
    left: auto;
    right: -20px;
}

.tooltip-container.auto-left .tooltip-text::after {
    left: auto;
    right: 40px;
}

.tooltip-container.auto-bottom .tooltip-text {
    top: 150%;
    bottom: auto;
    transform: translateY(-10px);
}

.tooltip-container.auto-bottom .tooltip-text::after {
    bottom: 100%;
    top: auto;
    border-color: transparent transparent #2d3748 transparent;
}

.tooltip-container.auto-bottom:hover .tooltip-text {
    transform: translateY(0);
}

/* Kombinasi bottom + left */
.tooltip-container.auto-bottom.auto-left .tooltip-text {
    top: 150%;
    bottom: auto;
    left: auto;
    right: -20px;
}

.tooltip-container.auto-bottom.auto-left .tooltip-text::after {
    bottom: 100%;
    top: auto;
    left: auto;
    right: 40px;
    border-color: transparent transparent #2d3748 transparent;
}

/* Narrow untuk layar kecil */
.tooltip-container.auto-narrow .tooltip-text {
    width: 220px;
    left: -10px;
}

.tooltip-container.auto-narrow .tooltip-text::after {
    left: 30px;
}

.tooltip-container.auto-narrow.auto-left .tooltip-text {
    right: -10px;
    left: auto;
}

.tooltip-container.auto-narrow.auto-left .tooltip-text::after {
    right: 30px;
    left: auto;
}

/* TOOLTIP THEMES */

/* Primary Theme */
.tooltip-primary .tooltip-text {
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-color: rgba(184, 134, 11, 0.5);
}

.tooltip-primary .tooltip-text::after {
    border-top-color: #b8860b;
}

.tooltip-container.auto-bottom.tooltip-primary .tooltip-text::after {
    border-bottom-color: #b8860b;
    border-top-color: transparent;
}

/* Secondary Theme */
.tooltip-secondary .tooltip-text {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    border-color: rgba(205, 133, 63, 0.5);
}

.tooltip-secondary .tooltip-text::after {
    border-top-color: #cd853f;
}

.tooltip-container.auto-bottom.tooltip-secondary .tooltip-text::after {
    border-bottom-color: #cd853f;
    border-top-color: transparent;
}

/* Success Theme */
.tooltip-success .tooltip-text {
    background: linear-gradient(135deg, #228b22, #32cd32);
    border-color: rgba(34, 139, 34, 0.5);
}

.tooltip-success .tooltip-text::after {
    border-top-color: #228b22;
}

.tooltip-container.auto-bottom.tooltip-success .tooltip-text::after {
    border-bottom-color: #228b22;
    border-top-color: transparent;
}

/* Warning Theme */
.tooltip-warning .tooltip-text {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    border-color: rgba(255, 193, 7, 0.5);
}

.tooltip-warning .tooltip-text::after {
    border-top-color: #ffc107;
}

.tooltip-container.auto-bottom.tooltip-warning .tooltip-text::after {
    border-bottom-color: #ffc107;
    border-top-color: transparent;
}

/* Danger Theme */
.tooltip-danger .tooltip-text {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border-color: rgba(220, 53, 69, 0.5);
}

.tooltip-danger .tooltip-text::after {
    border-top-color: #dc3545;
}

.tooltip-container.auto-bottom.tooltip-danger .tooltip-text::after {
    border-bottom-color: #dc3545;
    border-top-color: transparent;
}

/* Info Theme */
.tooltip-info .tooltip-text {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-color: rgba(23, 162, 184, 0.5);
}

.tooltip-info .tooltip-text::after {
    border-top-color: #17a2b8;
}

.tooltip-container.auto-bottom.tooltip-info .tooltip-text::after {
    border-bottom-color: #17a2b8;
    border-top-color: transparent;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .tooltip-text {
        width: 200px !important;
        font-size: 12px;
        padding: 10px 12px;
        left: -15px !important;
    }
    
    .tooltip-text::after {
        left: 35px !important;
    }
    
    .tooltip-container.auto-left .tooltip-text {
        left: auto !important;
        right: -15px !important;
    }
    
    .tooltip-container.auto-left .tooltip-text::after {
        left: auto !important;
        right: 35px !important;
    }
}

@media (max-width: 480px) {
    .tooltip-text {
        width: 180px !important;
        font-size: 11px;
        padding: 8px 10px;
        left: -10px !important;
    }
    
    .tooltip-text::after {
        left: 30px !important;
    }
    
    .tooltip-container.auto-left .tooltip-text {
        right: -10px !important;
    }
    
    .tooltip-container.auto-left .tooltip-text::after {
        right: 30px !important;
    }
    
    /* Force semua tooltip ke atas di mobile kecuali yang memang harus di bawah */
    .tooltip-container:not(.force-bottom).auto-bottom .tooltip-text {
        top: auto !important;
        bottom: 150% !important;
        transform: translateY(10px);
    }
    
    .tooltip-container:not(.force-bottom).auto-bottom .tooltip-text::after {
        top: 100% !important;
        bottom: auto !important;
        border-color: #2d3748 transparent transparent transparent !important;
    }
    
    .tooltip-container:not(.force-bottom).auto-bottom:hover .tooltip-text {
        transform: translateY(0);
    }
}

/* ANIMATIONS */
@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tooltipFadeInBottom {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-container:hover .tooltip-text {
    animation: tooltipFadeIn 0.3s ease-out;
}

.tooltip-container.auto-bottom:hover .tooltip-text {
    animation: tooltipFadeInBottom 0.3s ease-out;
}

/* MOBILE CLICK SUPPORT */
.tooltip-text.show-mobile {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.tooltip-container.active-mobile .info-icon {
    color: #dc3545 !important;
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .tooltip-container:hover .tooltip-text {
        visibility: hidden;
        opacity: 0;
    }
    
    .tooltip-container.active-mobile .tooltip-text,
    .tooltip-text.show-mobile {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* LABEL INTEGRATION */
.label-with-tooltip {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.label-with-tooltip .font-weight-bold {
    margin-bottom: 0;
    margin-right: 0;
}

/* DEBUGGING - Uncomment untuk debug posisi */
/*
.tooltip-container {
    border: 1px dashed red !important;
}

.tooltip-text {
    border: 2px solid yellow !important;
}
*/

/* ===================================
   CUSTOM FILE INPUT - SIP PBBKU THEME
   ===================================
   Custom styling for file input fields
*/

.custom-file {
  position: relative;
  display: inline-block; /* Changed to inline-block for better layout control */
  width: 100%; /* Take full width of parent column */
  height: calc(2.25rem + 4px); /* Match form-control height + border */
  margin-bottom: 1rem; /* Add some bottom margin */
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 4px);
  margin: 0;
  opacity: 0; /* Hide the default input */
  cursor: pointer;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 4px);
  padding: 0.75rem 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #495057;
  background-color: #fff;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden; /* Hide overflow text */
  white-space: nowrap; /* Prevent text wrapping */
  text-overflow: ellipsis; /* Add ellipsis for long file names */
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3; /* Ensure button is above label text */
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  line-height: 1.4;
  color: #ffffff;
  background: linear-gradient(135deg, #cd853f, #d2691e); /* Secondary button color */
  border-left: 2px solid #cd853f;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  content: "Browse"; /* Default button text */
  transition: all 0.3s ease;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #b8860b; /* Golden border on focus */
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25); /* Golden shadow on focus */
  outline: 0;
}

.custom-file-input:focus ~ .custom-file-label::after {
  background: linear-gradient(135deg, #b8732d, #cd853f); /* Darker secondary on focus */
  border-color: #b8732d;
}

.custom-file-label:hover {
  border-color: #b8860b; /* Golden border on hover */
}

.custom-file-label:hover::after {
  background: linear-gradient(135deg, #b8732d, #cd853f); /* Darker secondary on hover */
  border-color: #b8732d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-file-label {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
  .custom-file-label::after {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  .custom-file {
    height: calc(2.0rem + 4px);
  }
}

@media (max-width: 480px) {
  .custom-file-label {
    font-size: 0.8rem;
    padding: 0.5rem 0.7rem;
  }
  .custom-file-label::after {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  .custom-file {
    height: calc(1.8rem + 4px);
  }
}
/* ===================================
   OPTIMIZED MAIN CSS - SIP PBBKU THEME
   ===================================
   Combined and optimized styles for various components.
*/

/* Base Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #495057;
}

.font-weight-bold {
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
  outline: 0;
}

/* Form Check & Radio Buttons */
.form-check {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  position: absolute;
  left: 0;
  top: 0.25rem; /* Adjust vertical alignment */
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  vertical-align: top;
  background-color: #fff;
  border: 2px solid #ced4da;
  appearance: none; /* Hide default browser radio */
  border-radius: 50%; /* Make it round */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
  background-color: #b8860b; /* Golden color when checked */
  border-color: #b8860b; /* Golden border when checked */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); /* White dot */
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-check-input:focus {
  border-color: #daa520; /* Lighter golden on focus */
  box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25); /* Golden shadow on focus */
  outline: 0;
}

.form-check-input:disabled {
  background-color: #e9ecef;
  opacity: 0.65;
  cursor: not-allowed;
}

.form-check-label {
  margin-bottom: 0;
  color: #495057; /* Darker text color */
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 0.25rem; /* Space between input and label text */
  cursor: pointer;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0; /* Reset padding for inline */
  margin-right: 1rem; /* Space between inline items */
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.5rem; /* Space between inline input and label */
}

/* Custom File Input */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 4px);
  margin-bottom: 1rem;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 4px);
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 4px);
  padding: 0.75rem 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #495057;
  background-color: #fff;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  line-height: 1.4;
  color: #ffffff;
  background: linear-gradient(135deg, #cd853f, #d2691e);
  border-left: 2px solid #cd853f;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  content: "Browse";
  transition: all 0.3s ease;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #b8860b;
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
  outline: 0;
}

.custom-file-input:focus ~ .custom-file-label::after {
  background: linear-gradient(135deg, #b8732d, #cd853f);
  border-color: #b8732d;
}

.custom-file-label:hover {
  border-color: #b8860b;
}

.custom-file-label:hover::after {
  background: linear-gradient(135deg, #b8732d, #cd853f);
  border-color: #b8732d;
}

/* Card System */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.75rem; /* Slightly larger radius for modern look */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
  margin-bottom: 1.5rem; /* Default margin for cards */
}

.card-header {
  padding: 1rem 1.25rem;
  margin-bottom: 0;
  background-color: #f8f9fa; /* Light background for header */
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: calc(0.75rem - 1px);
  border-top-right-radius: calc(0.75rem - 1px);
  display: flex;
  align-items: center;
}

.card-header .card-title {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #343a40; /* Darker text for title */
}

.card-header .card-title i {
  margin-right: 0.5rem;
  color: #b8860b; /* Golden icon */
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
/* ==========================
   Table Responsive Container
========================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .table-responsive {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
  }
}

/* ==========================
   Table Base Styles
========================== */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--light-text);
  vertical-align: top;
  background-color: transparent;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.5;
}

/* ==========================
   Table Head Styles
========================== */
.table thead {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.table thead th {
  padding: 0.75rem;
  vertical-align: bottom;
  border-bottom: 2px solid var(--border-color);
  text-align: left;
}

/* ==========================
   Table Body Styles
========================== */
.table tbody {
  background-color: transparent;
}

.table tbody tr {
  border-top: 1px solid var(--border-color);
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid var(--border-color);
}

/* ==========================
   Bordered Table
========================== */
.table-bordered {
  border: 1px solid var(--border-color);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid var(--border-color);
}

/* ==========================
   Striped Rows (Zebra)
========================== */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================
   Hoverable Rows
========================== */
.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition-fast);
}

/* ==========================
   Small Table
========================== */
.table-sm th,
.table-sm td {
  padding: 0.3rem;
  font-size: 0.875rem;
}

/* ==========================
   Dark Table Variant
========================== */
.table-dark {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: var(--border-color);
}

/* ==========================
   Caption Styling
========================== */
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--gray-text);
  text-align: left;
  caption-side: top;
}

/* ==========================
   Utility Classes
========================== */
.text-start {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-end {
  text-align: right !important;
}

.w-auto {
  width: auto !important;
}
.w-100 {
  width: 100% !important;
}

.rounded {
  border-radius: var(--border-radius) !important;
}
.shadow {
  box-shadow: var(--shadow-light);
}
.shadow-lg {
  box-shadow: var(--shadow-medium);
}
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}
        
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: #8b4513;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-details p {
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
    outline: 0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #9a7209, #b8932d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.map-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.map-section h2 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
}

.office-hours {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.office-hours h2 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
}

.hours-item .day {
    font-weight: 600;
    color: #495057;
}

.hours-item .time {
    color: #6c757d;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem auto;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .contact-info,
    .contact-form,
    .map-section,
    .office-hours {
        padding: 1rem;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
}

        
.page-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section h2 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section h2 i {
    color: #b8860b;
}

.section p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 1rem;
    border-left: 4px solid #b8860b;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8860b;
    display: block;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.vision, .mission {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 1rem;
    border-left: 4px solid #b8860b;
}

.vision h3, .mission h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission ul {
    list-style: none;
    padding: 0;
}

.mission li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.team-avatar i {
    color: white;
    font-size: 2rem;
}

.team-name {
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #6c757d;
    font-size: 0.9rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    border-left: 4px solid #b8860b;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-title {
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #b8860b;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #b8860b;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #b8860b;
}

.timeline-year {
    font-weight: 700;
    color: #b8860b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
    color: black;
}
/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 1rem;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}