/* ================================
   BAJAI89 PREMIUM TEMPLATE OVERRIDE
   ================================ */

:root {
  --bajai-red: #e50914;
  --bajai-red-dark: #8b0008;
  --bajai-gold: #ffd700;
  --bajai-orange: #ff9800;

  --bajai-black: #080808;
  --bajai-dark: #111318;
  --bajai-dark-soft: #171a21;

  --bajai-white: #ffffff;
  --bajai-text: #e8e8e8;
  --bajai-muted: #a9acb3;

  --bajai-radius: 16px;
  --bajai-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

/* ================================
   GLOBAL
   ================================ */

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(229, 9, 20, 0.08), transparent 35%),
    #f3f4f6 !important;

  color: #1e293b;
}

a {
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
}

/* ================================
   HEADER
   ================================ */

#header {
  background:
    linear-gradient(
      135deg,
      #050505 0%,
      #111318 35%,
      #8b0008 70%,
      #e50914 100%
    ) !important;

  border-bottom: 2px solid rgba(255, 215, 0, 0.7) !important;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(229, 9, 20, 0.18) !important;

  backdrop-filter: blur(12px);
}

/* HEADER MAIN */

.BAJAI-89-header-main {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

/* LOGO */

.BAJAI-89-header-logo img {
  height: 52px !important;
  width: auto !important;

  filter:
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 8px rgba(255, 215, 0, 0.18));

  transition: transform 0.25s ease;
}

.BAJAI-89-header-logo img:hover {
  transform: scale(1.04);
}

/* ================================
   SEARCH
   ================================ */

.BAJAI-89-header-search .input-group {
  width: 100%;

  background: rgba(0, 0, 0, 0.45) !important;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 999px !important;

  overflow: hidden;

  box-shadow:
    inset 0 0 10px rgba(0, 0, 0, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.2);
}

.BAJAI-89-header-search .form-control {
  height: 44px !important;

  background: transparent !important;

  border: none !important;

  color: #ffffff !important;

  padding-left: 18px !important;

  box-shadow: none !important;
}

.BAJAI-89-header-search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.BAJAI-89-header-search .btn {
  height: 44px;

  padding: 0 20px !important;

  background:
    linear-gradient(
      135deg,
      var(--bajai-gold),
      var(--bajai-orange)
    ) !important;

  color: #111 !important;

  border: none !important;
}

.BAJAI-89-header-search .btn i {
  color: #111 !important;
}

/* ================================
   LOGIN / DAFTAR BUTTON
   ================================ */

.BAJAI-89-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.BAJAI-89-btn-pill {
  min-width: 105px;

  padding: 10px 20px !important;

  border-radius: 999px !important;

  font-size: 12px !important;

  font-weight: 800 !important;

  letter-spacing: 0.6px;

  border: 1px solid rgba(255, 255, 255, 0.25) !important;

  background: rgba(255, 255, 255, 0.07) !important;

  color: #fff !important;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25) !important;

  transition: all 0.25s ease !important;
}

.BAJAI-89-btn-pill--primary {
  background:
    linear-gradient(
      135deg,
      var(--bajai-gold),
      #ff9800
    ) !important;

  color: #111 !important;

  border: none !important;
}

.BAJAI-89-btn-pill:hover {
  transform: translateY(-2px);

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #eeeeee
    ) !important;

  color: var(--bajai-red) !important;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.30) !important;
}

/* ================================
   MENU NAVIGATION
   ================================ */

.BAJAI-89-header-nav {
  margin-top: 3px !important;

  padding-top: 8px !important;

  border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.BAJAI-89-header-nav .nav.navbar-nav {
  display: flex;

  gap: 7px !important;

  flex-wrap: wrap;
}

.BAJAI-89-header-nav .nav.navbar-nav > li > a {
  padding: 8px 16px !important;

  border-radius: 999px !important;

  background: rgba(255, 255, 255, 0.05) !important;

  border: 1px solid rgba(255, 255, 255, 0.10) !important;

  color: rgba(255, 255, 255, 0.85) !important;

  font-size: 11px !important;

  font-weight: 700 !important;

  box-shadow: none !important;
}

.BAJAI-89-header-nav .nav.navbar-nav > li > a:hover {
  background:
    linear-gradient(
      135deg,
      var(--bajai-red),
      var(--bajai-red-dark)
    ) !important;

  color: white !important;

  border-color: rgba(255, 215, 0, 0.5) !important;

  transform: translateY(-2px);
}

/* ================================
   MAIN CONTENT
   ================================ */

#content {
  background:
    linear-gradient(
      180deg,
      #f4f5f7 0%,
      #ffffff 100%
    ) !important;
}

.container {
  position: relative;
}

/* ================================
   PANELS
   ================================ */

.panel {
  border: none !important;

  border-radius: var(--bajai-radius) !important;

  overflow: hidden;

  box-shadow: var(--bajai-shadow) !important;

  background: #ffffff;
}

.panel:hover {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.16) !important;
}

/* ================================
   MAIN BANNER
   ================================ */

.panel img.img-full {
  display: block;

  width: 100%;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.panel:hover img.img-full {
  transform: scale(1.015);

  filter: brightness(1.04);
}

/* ================================
   ACTION AREA
   ================================ */

.action-panel-hd {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #050505 0%,
      #111318 42%,
      #720008 75%,
      #e50914 100%
    ) !important;

  border-top: 1px solid rgba(255, 215, 0, 0.4) !important;

  padding: 20px !important;

  border-radius: 0 0 16px 16px !important;
}

.action-panel-hd::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -150px;
  right: -80px;

  border-radius: 50%;

  background: rgba(255, 215, 0, 0.12);

  filter: blur(12px);

  pointer-events: none;
}

.action-row-hd {
  position: relative;

  z-index: 2;
}

/* BUTTONS */

.btn-hd {
  border-radius: 10px !important;

  min-height: 48px;

  font-weight: 800 !important;

  letter-spacing: 0.4px;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.32) !important;

  transition: all 0.25s ease !important;
}

.btn-live-demo-hd,
.btn-bookmark-hd,
.btn-like-hd {
  background:
    linear-gradient(
      135deg,
      #ffd700 0%,
      #ffb300 45%,
      #ff8c00 100%
    ) !important;

  color: #111 !important;

  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.btn-hd:hover {
  transform: translateY(-3px) scale(1.015);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(255, 215, 0, 0.20) !important;

  filter: brightness(1.08);
}

/* ================================
   ARTICLE BOX
   ================================ */

.BAJAI-89-article-box {
  background: #ffffff !important;

  border: none !important;

  border-radius: 18px !important;

  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.10) !important;
}

.BAJAI-89-article-header {
  position: relative;

  background:
    linear-gradient(
      135deg,
      #070707 0%,
      #151515 38%,
      #8b0008 72%,
      #e50914 100%
    ) !important;

  border-bottom: 2px solid rgba(255, 215, 0, 0.65);
}

.BAJAI-89-article-header::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 35%;
  height: 2px;

  background: #ffd700;
}

.BAJAI-89-article-header h2 {
  color: #fff !important;

  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.BAJAI-89-article-body {
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fafafa
    );
}

.BAJAI-89-article-body p {
  color: #273142 !important;

  line-height: 1.8 !important;
}

/* ================================
   STATS PILLS
   ================================ */

.BAJAI-89-stat-pill {
  background:
    linear-gradient(
      135deg,
      #111318,
      #252830
    ) !important;

  border: 1px solid rgba(255, 215, 0, 0.25) !important;

  color: #ffd700 !important;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.10);

  transition: all 0.25s ease;
}

.BAJAI-89-stat-pill:hover {
  transform: translateY(-2px);

  border-color: #ffd700 !important;

  box-shadow:
    0 7px 17px rgba(0, 0, 0, 0.17);
}

/* ================================
   ARTICLE HIGHLIGHT
   ================================ */

.BAJAI-89-article-highlight {
  position: relative;

  background:
    linear-gradient(
      135deg,
      #fff9db 0%,
      #fff4ba 100%
    ) !important;

  border-left: 5px solid #e50914 !important;

  color: #4a3600 !important;

  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.06);
}

/* ================================
   FAQ
   ================================ */

.BAJAI-89-faq2-box {
  background: #fff !important;

  border: none !important;

  border-radius: 18px !important;

  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.10) !important;
}

.BAJAI-89-faq2-header {
  background:
    linear-gradient(
      135deg,
      #050505 0%,
      #151515 38%,
      #8b0008 72%,
      #e50914 100%
    ) !important;

  border-bottom: 2px solid rgba(255, 215, 0, 0.65);
}

.BAJAI-89-faq2-item {
  border:
    1px solid rgba(15, 23, 42, 0.08) !important;

  border-radius: 12px !important;

  box-shadow:
    0 5px 16px rgba(0, 0, 0, 0.06) !important;

  transition: all 0.25s ease !important;
}

.BAJAI-89-faq2-item:hover {
  transform: translateY(-3px) !important;

  border-color:
    rgba(229, 9, 20, 0.22) !important;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.10) !important;
}

.BAJAI-89-faq2-q {
  background:
    linear-gradient(
      90deg,
      #fff7f7,
      #ffffff
    ) !important;
}

.BAJAI-89-faq2-num {
  background:
    linear-gradient(
      135deg,
      #e50914,
      #8b0008
    ) !important;

  border: 1px solid rgba(255, 215, 0, 0.55);

  color: white !important;
}

/* ================================
   LINKS
   ================================ */

.BAJAI-89-article-body a {
  color: #d6000c !important;

  font-weight: 800;
}

.BAJAI-89-article-body a:hover {
  color: #ff9800 !important;
}

/* ================================
   SIDEBAR
   ================================ */

.col-sm-4 .panel {
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fafafa
    );

  border-top:
    3px solid #e50914 !important;
}

/* ================================
   PRICE
   ================================ */

.price,
.price_in_dollars {
  color: #d6000c !important;
}

.price_in_dollars {
  font-weight: 900 !important;
}

/* ================================
   SCROLLBAR
   ================================ */

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      #e50914,
      #ff9800
    );

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      #ff2430,
      #ffd700
    );
}

/* ================================
   SELECTION
   ================================ */

::selection {
  background: #e50914;
  color: white;
}

/* ================================
   MOBILE
   ================================ */

@media (max-width: 767px) {

  .BAJAI-89-header-main {
    flex-direction: column;

    align-items: stretch;

    padding: 8px 0 12px;
  }

  .BAJAI-89-header-logo {
    justify-content: center;
  }

  .BAJAI-89-header-logo img {
    height: 45px !important;
  }

  .BAJAI-89-header-search {
    width: 100%;
  }

  .BAJAI-89-header-actions {
    width: 100%;

    justify-content: center;
  }

  .BAJAI-89-btn-pill {
    flex: 1;

    max-width: 180px;
  }

  .BAJAI-89-header-nav .nav.navbar-nav {
    display: flex !important;

    flex-direction: row !important;

    overflow-x: auto;

    flex-wrap: nowrap !important;

    padding-bottom: 6px;
  }

  .BAJAI-89-header-nav .nav.navbar-nav > li {
    flex-shrink: 0;
  }

  .BAJAI-89-header-nav .nav.navbar-nav > li > a {
    white-space: nowrap;
  }

  .action-row-hd {
    flex-direction: column;
  }

  .btn-hd {
    width: 100% !important;
  }

  .BAJAI-89-article-body {
    padding: 18px !important;
  }

  .BAJAI-89-article-body p {
    font-size: 1.08rem !important;
  }

  .BAJAI-89-faq2-q-text {
    font-size: 1.08rem !important;
  }

  .BAJAI-89-faq2-a {
    padding-left: 18px !important;
  }
}

/* ================================
   SMALL MOBILE
   ================================ */

@media (max-width: 480px) {

  .BAJAI-89-header-actions {
    gap: 7px;
  }

  .BAJAI-89-btn-pill {
    padding: 9px 12px !important;

    min-width: unset;

    font-size: 11px !important;
  }

  .BAJAI-89-article-header,
  .BAJAI-89-faq2-header {
    padding: 14px 16px !important;
  }

  .BAJAI-89-article-header h2,
  .BAJAI-89-faq2-header h2 {
    font-size: 1.08rem !important;
  }
}