:root {
  --bg-purple: #7c6df5;
  --bg-deep: #17103b;
  --card-bg: #ffffff;
  --text-main: #1b123f;
  --text-muted: #77748f;
  --primary: #2b215f;
  --primary-soft: #ece9ff;
  --primary-border: #6d5dfc;
  --accent: #ffb84a;
  --shadow-soft: 0 18px 40px rgba(23, 16, 59, 0.18);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
  background-color: #f1f1f1 !important;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* =========================
   RESET GLOBAL
   ========================= */
:root {
  --font-mona: "Mona Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
}

html,
body,
p,
a,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-mona) !important;
}

h1,
h2,
h3 {
  font-weight: 800;
}

h4,
h5 {
  font-weight: 600;
}

.img-zoomable {
  cursor: zoom-in;
  transition: opacity 0.3s ease;
}

.img-zoomable:hover {
  opacity: 0.9;
}

.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

.zoom-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoom-modal img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
}

.zoom-close:hover,
.zoom-close:focus {
  color: #bbb;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*==============================
        11. FAQ CSS
============================*/
.faq .card {
  border-radius: 0;
  border: 0;
}
.faq .card-header {
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid var(--color-ebebeb);
  cursor: pointer;
  margin-bottom: 0;
}
.faq a.card-header {
  color: var(--color-707070);
}
.faq .card-header h6 {
  font-family: "Mona Sans", sans-serif;
  font-weight: 500;
}
.faq .card-body {
  padding: 30px 0;
  background: transparent;
}

.faq .card-header.collapsed:after {
  content: "\e61a";
  transition: 0.5s;
}

.faq .card-header:after {
  font-family: "themify";
  content: "\e622";
  float: right;
  transition: 0.5s;
}
