.faq-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.faq-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.faq-group-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.faq-group-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* ===== HEADING ===== */
.faq-heading-wrapper {
  width: 100%;
  text-align: center;
}

.faq-heading {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.1;
}

/* ===== BUTTON WRAPPER ===== */
.faq-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ===== BUTTON ===== */
.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border: 2px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.faq-btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: translateY(-1px);
}

.faq-btn:active {
  transform: translateY(0px);
}

/* ===== ICON ===== */
.faq-btn-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.faq-btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ===== TEXT ===== */
.faq-btn-text {
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 32px;
  }

  .faq-section {
    padding: 40px 16px;
  }

  .faq-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .faq-heading {
    font-size: 26px;
  }
}


.faq-accordion-section {
  background-color: rgb(36, 36, 36);
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* TEXTURE LAYER */
.faq-accordion-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/gun-metal-2880w.png');
  background-repeat: repeat;
  background-size: 10px auto;

  opacity: 0.5; /* controls texture visibility */

  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.faq-accordion-section * {
  position: relative;
  z-index: 1;
}




.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.faq-accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
}

/* HEADER */
.faq-accordion-header {
  width: 100%;
  background: rgb(162 163 168);
  color: #000000;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-accordion-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* BODY */
.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
}

/* ACTIVE */
.faq-accordion-item.active .faq-accordion-body {
  max-height: 500px;
  padding: 20px;
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-accordion-header {
    font-size: 14px;
  }
}