/* Extracted from faqs.html */
:root {
  --Saniklear-yellow: #fee023;
  --Saniklear-white: #ffffff;
  --Saniklear-green: #4CAF50;
  --Saniklear-blue: #01244a;
  --Saniklear-blue-deep: #000910;
}

/* ================================
       Saniklear FAQ Command Center
       Lighter / Softer Version
       Scoped to .faq-ai
    ================================= */
.faq.faq-ai {
  position: relative;
  padding: 90px 0 80px;
  /* Premium gradient background */
  background: linear-gradient(180deg,
      #f0f4ff 0%,
      #ffffff 50%,
      #f8feff 100%);
  overflow: hidden;
}

/* Glowing blobs in background – now very soft */
.faq.faq-ai::before,
.faq.faq-ai::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.faq.faq-ai::before {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -40px;
  background: radial-gradient(circle,
      rgba(254, 224, 35, 0.35),
      transparent 65%);
  animation: faqGlowDrift1 18s ease-in-out infinite alternate;
}

.faq.faq-ai::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle,
      rgba(76, 175, 80, 0.35),
      transparent 65%);
  animation: faqGlowDrift2 22s ease-in-out infinite alternate;
}

@keyframes faqGlowDrift1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.25;
  }

  100% {
    transform: translate3d(40px, 20px, 0) scale(1.05);
    opacity: 0.45;
  }
}

@keyframes faqGlowDrift2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.25;
  }

  100% {
    transform: translate3d(-40px, -20px, 0) scale(1.03);
    opacity: 0.45;
  }
}

.faq-ai .faq-shell {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 50px 48px 45px;
  /* Premium white card with subtle depth */
  background: #ffffff;
  border: 1px solid rgba(41, 131, 253, 0.15);
  box-shadow:
    0 20px 60px rgba(41, 131, 253, 0.15),
    0 0 0 1px rgba(41, 131, 253, 0.08);
  overflow: hidden;
}

/* Position header text above the shell */
.faq-ai .faq-header-text {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Subtle grid overlay */
.faq-ai .faq-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 131, 253, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 131, 253, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* HEADER ROW */
.faq-ai .faq-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.faq-ai .faq-chip-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  background-color: #2983fd;
  border: none;
  box-shadow: 0 4px 12px rgba(41, 131, 253, 0.3);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.faq-ai .faq-chip-main:hover {
  background-color: #2983fd;
  box-shadow: 0 6px 18px rgba(41, 131, 253, 0.4);
  transform: translateY(-2px);
}

.faq-ai .faq-chip-main-dot {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: none;
  flex-shrink: 0;
  display: none;
}

.faq-ai .faq-header-text h2 {
  font-family: "covered by your grace", cursive;
  font-size: 30px;
  font-weight: 400;
  color: #2983fd;
  line-height: 1.1;
  margin-bottom: 10px;
}

.faq-ai .faq-header-text h3 {
  margin: 0 0 20px;
  font-size: 37px;
  line-height: 1.1;
  color: #01244a;
  font-weight: 700;
}

.faq-ai .faq-header-text h3 span {
  color: #2983fd;
}

.faq-ai .faq-header-text p {
  margin: 0 auto;
  font-size: 14px;
  color: rgba(1, 36, 74, 0.7);
  max-width: 450px;
  line-height: 1.5;
  text-align: center;
}

.faq-ai .faq-header-text p strong {
  color: #01244a;
  font-weight: 600;
}

/* Make pagetitle description match the h3 size */
.page-title-layout1 .pagetitle__desc {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
}

/* Add space above text link in feature section */
.feature-layout1 .row:last-child {
  margin-top: 60px;
}

/* SEARCH + FILTER ROW */
.faq-ai .faq-search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-ai .faq-filter-chips {
  order: -1;
  flex: 1 1 auto;
}

.faq-ai .faq-search-box {
  flex: 0 1 300px;
  min-width: 0;
}

.faq-ai .faq-search-input-wrap {
  position: relative;
}

.faq-ai .faq-search-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(41, 131, 253, 0.6);
}

.faq-ai .faq-search-input {
  width: 100%;
  padding: 11px 14px 11px 36px;
  border-radius: 8px;
  border: 1.5px solid rgba(41, 131, 253, 0.25);
  background: rgba(41, 131, 253, 0.03);
  color: #01244a;
  font-size: 14px;
  outline: none;
  box-shadow: 0 2px 8px rgba(41, 131, 253, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-ai .faq-search-input::placeholder {
  color: rgba(41, 131, 253, 0.5);
}

.faq-ai .faq-search-input:focus {
  border-color: #2983fd;
  box-shadow:
    0 0 0 1px rgba(41, 131, 253, 0.3),
    0 0 18px rgba(41, 131, 253, 0.2);
  background: #ffffff;
}

.faq-ai .faq-search-hint {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(100, 116, 139, 0.95);
}

.faq-ai .faq-search-hint strong {
  color: var(--Saniklear-yellow);
}

.faq-ai .faq-filter-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-ai .faq-chip-filter {
  position: relative;
  border: 0;
  outline: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  background: #2983fd;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(41, 131, 253, 0.3);
  transition: box-shadow 0.3s ease, transform 0.12s ease;
  z-index: 1;
  overflow: hidden;
}

.faq-ai .faq-chip-filter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #01244a;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
}

.faq-ai .faq-chip-filter:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}

.faq-ai .faq-chip-filter:hover {
  box-shadow: 0 6px 18px rgba(1, 36, 74, 0.4);
  transform: translateY(-2px);
}

/* FAQ GRID / ACCORDIONS */
.faq-ai .faq-grid {
  margin-top: 8px;
}

.faq-ai .accordion-item {
  margin-bottom: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid rgba(41, 131, 253, 0.12);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(41, 131, 253, 0.08);
  transition: all 0.25s ease;
}

.faq-ai .accordion-item:hover {
  border-color: rgba(41, 131, 253, 0.2);
  box-shadow: 0 6px 20px rgba(41, 131, 253, 0.12);
}

.faq-ai .accordion-item__header {
  position: relative;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(41, 131, 253, 0.02), #ffffff);
  transition: background 0.25s ease;
}

.faq-ai .accordion-item:hover .accordion-item__header {
  background: linear-gradient(90deg, rgba(41, 131, 253, 0.04), #ffffff);
}

.faq-ai .accordion-item__title {
  display: block;
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #01244a;
  font-weight: 500;
  padding-right: 26px;
  text-decoration: none;
}

    .faq-ai .accordion-toggle-icon {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid rgba(41, 131, 253, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: rgba(41, 131, 253, 0.6);
      background: rgba(41, 131, 253, 0.05);
      transition: all 0.25s ease;
    }

.faq-ai .accordion-item.opened .accordion-toggle-icon {
  border-color: #2983fd;
  background: rgba(41, 131, 253, 0.15);
  color: #2983fd;
}

.faq-ai .accordion__body {
  padding: 14px 20px 18px;
  font-size: 14px;
  color: rgba(1, 36, 74, 0.8);
  background: rgba(41, 131, 253, 0.02);
  line-height: 1.6;
}

.faq-ai .accordion__body p {
  margin-bottom: 0;
}

.faq-ai .accordion__body p+p {
  margin-top: 8px;
}

/* Bottom helper CTA */
.faq-ai .faq-bottom-cta {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.9);
}

.faq-ai .faq-bottom-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--Saniklear-green);
  text-decoration: none;
  font-weight: 500;
}

.faq-ai .faq-bottom-cta a i {
  font-size: 12px;
}

.faq-ai .faq-bottom-cta a:hover {
  color: var(--Saniklear-yellow);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .faq.faq-ai {
    padding: 70px 0 60px;
  }

  .faq-ai .faq-shell {
    padding: 22px 18px 22px;
    border-radius: 20px;
  }

  .faq-ai .faq-header-text h3 {
    font-size: 24px;
  }
}

    @media (max-width: 575.98px) {
      .faq-ai .faq-header-row {
        align-items: flex-start;
      }

      .faq-ai .faq-chip-filter{
        min-width: 115px;
      }

      .row{
        gap: 1rem !important;
      }
    }

    