/* ==========================================
   FAQ Section New
   module.css
========================================== */
.faq-section-new {
  padding: 80px 0;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 0;
}
.content-wrapper-new {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-title-new {
  font-size: 41px;
  font-weight: 900;
  line-height: 1.1;
  color: #000;
  margin: 0 auto 16px;
  max-width: 800px;
}
.faq-subtitle-new {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 auto 40px;
  max-width: 700px;
}

/* ---- CTA buttons ---- */
.faq-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.faq-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #EC2528;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s ease;
}
.faq-btn-primary:hover { background: #c0151f; color: #fff; }
.faq-btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #000;
  transition: all 0.2s ease;
}
.faq-btn-secondary:hover { background: #000; color: #fff; }

/* ---- Desktop accordion grid ---- */
.faq-accordion-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  text-align: left;
}

/* ---- Mobile carousel hidden on desktop ---- */
.faq-mobile-carousel { display: none; }

/* ---- FAQ item ---- */
.faq-item {
  border-bottom: 1px solid #E5E8F1;
  padding: 20px 0;
}
.faq-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-item-title span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item-content-inner {
  padding: 16px 0 4px;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  text-align: left;
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 768px) {
  .faq-section-new { padding: 48px 0; }
  .faq-title-new { font-size: 28px; }
  .faq-cta-row {
    flex-direction: column;
    align-items: center;
  }

  /* Hide desktop grid */
  .faq-accordion-wrapper { display: none; }

  /* Show mobile carousel */
  .faq-mobile-carousel {
    display: block;
    position: relative;
    text-align: left;
  }

  /* Pages wrapper */
  .faq-pages-wrapper { overflow: hidden; width: 100%; }
  .faq-pages-track {
    display: flex;
    transition: transform 0.4s ease;
  }

  /* Each page = full width, shows 4 items */
  .faq-page {
    min-width: 100%;
    box-sizing: border-box;
  }

  /* Dots + arrows row — all inline together */
  .faq-page-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-bottom: 8px;
  }
  .faq-page-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none; padding: 0; cursor: pointer;
    transition: background 0.2s;
  }
  .faq-page-dot.active { background: #000; }

  /* Arrows inline beside dots */
  .faq-page-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: static !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10) !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
  }
  .faq-page-arrow svg { display: block; }
  .faq-page-arrow.hidden {
    visibility: hidden !important;
    pointer-events: none !important;
  }
}3