/* ==============================
   CONTACT FAQ SECTION — PREMIUM BAMBOO UI
   ============================== */

.contact-faq-section {

  /* background: linear-gradient(
    180deg,
    #dff6ec 0%,
    #eafaf3 60%,
    var(--card-bg-color) 100%
  ); */

  padding:100px 0;

  position:relative;
  overflow:hidden;

  margin-top:-40px;
}

.contact-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.faq-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f3a2c;
  margin-bottom: 10px;
}

.faq-section-subtitle {
  font-size: 16px;
  color: #2f5a3f;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ------------------- FAQ ITEMS ------------------- */
.faq-items {
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #1f3a2c;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 14px;
  color: #2f5a3f;
  line-height: 1.6;
}

/* Floating leaves (unchanged) */
.leaf{
  position:absolute;
  width:60px;
  height:60px;
  background:url('/assets/images/leaf.png') no-repeat center/contain;
  opacity:.45;
  animation:floatLeaf 7s ease-in-out infinite;
  z-index:1;
}

/* LEFT SIDE LEAVES */
.leaf-left-1{
  top:20%;
  left:15%;
  animation-delay:0s;
}

.leaf-left-2{
  top:45%;
  left:72%;
  animation-delay:2s;
}

.leaf-left-3{
  top:90%;
  left:18%;
  animation-delay:4s;
}

@keyframes floatLeaf{
  0%{
    transform:translateY(0) rotate(0deg);
  }

  50%{
    transform:translateY(-20px) rotate(12deg);
  }

  100%{
    transform:translateY(0) rotate(0deg);
  }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
  .contact-faq-section {
    padding: 80px 15px;
  }

  .faq-section-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}