
.faq-section {
  padding: 4rem 1.5rem;
  /* background: radial-gradient(circle at top left, #fdf7ef 0, #f5f1ea 40%, #f0e6da 100%); */
  background: #a5a4a4;
}

.faq-inner {
  /* max-width: 900px; */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(178, 106, 60, 0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* subtle line motif */
.faq-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: linear-gradient(
    115deg,
    rgba(178, 106, 60, 0.09) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.faq-inner > * {
  position: relative;
  z-index: 1;  
}

.faq-heading {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  color: #3b2a20;
  letter-spacing: 0.04em;
  width: 100%;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(148, 119, 96, 0.28);
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.25rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-width: 33%;
  max-width: 33%;
  flex: 1;
}

.faq-item[open] {
  border-color: rgba(178, 106, 60, 0.6);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1.25rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.98rem;
  font-size: .85rem;
  color: #402b22;
  line-height: 1rem;
}

.faq-item b {
  padding: 0 .1rem;
  color: #bf822b;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 500;
  margin-left: 1rem;
  color: #b26a3c;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-1px);
  color: #8a4d25;
}

.faq-item summary:hover {
  background: rgba(241, 232, 222, 0.7);
}

.faq-item:not([open]) {
  height: 3.5rem;
}

.faq-content {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
  border-top: 1px solid rgba(226, 210, 196, 0.8);
}

.faq-content p {
  margin: 0.7rem 0;
}

.faq-content ul {
  margin: 0.5rem 0 0.9rem 1.1rem;
  padding: 0;
}

.faq-content li {
  margin: 0.25rem 0;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #b26a3c;
  color: #fff;
  box-shadow: 0 12px 24px rgba(178, 106, 60, 0.35);
  cursor: pointer;
  /* transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease; */
  transition: transform 0.15s ease;
}

.faq-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(178, 106, 60, 0.4);
  opacity: 0.95;
}

/* .faq-cta-button.secondary {
  background: transparent;
  color: #8a4d25;
  border: 1px solid rgba(178, 106, 60, 0.7);
  box-shadow: none;
} */

/* .faq-cta-button.secondary:hover {
  background: rgba(242, 225, 210, 0.7);
  box-shadow: 0 10px 20px rgba(148, 119, 96, 0.25);
} */

@media (max-width: 640px) {
  .faq-inner {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .faq-heading {
    font-size: 1.45rem;
    font-size: 1.1rem;
  }

  .faq-item{
    min-width: 100%;
  }



  .faq-item:not([open]){
    height: auto;
  }

  .faq-item summary {
    font-size: 0.96rem;
    font-size: 0.86rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }

  .faq-content {
    font-size: 0.93rem;
  }
}