
/* ================= FAQ SECTION ================= */
.faqs-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.faqs-title {
  font-size: 33px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 40px;
}

/* Accordion Card Style */
.faqs-card {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px 0 #383838;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.faqs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px 0 #000000;
}

/* Accordion Button */
.faqs-button {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding: 20px 20px 20px 50px;
  border-radius: 14px;
  background: #fdfdfd;
  position: relative;
  text-align: left;
  transition: background 0.3s, color 0.3s;
}

/* Icon */
.faqs-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #ff5722;
  transition: transform 0.3s;
}

/* Active Button */
.faqs-button:not(.collapsed) {
  background: #000000;
  color: #ffffff;
}

.faqs-button:not(.collapsed) .faqs-icon {
  transform: translateY(-50%) rotate(45deg);
  color: #ffffff;
}

/* Accordion Body */
.faqs-body {
  font-size: 16px;
  font-weight: 700;
  color: #3d3d3d;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .faqs-title { font-size: 27px; }
  .faqs-button { font-size: 16px; padding: 15px 15px 15px 45px; }
  .faqs-icon { font-size: 18px; left: 15px; }
  .faqs-body { font-size: 15px; }
}
