/* FAQ SECTION STYLES - Unique namespace to prevent conflicts */
.ftlt-faq-container {
  --primary-color: #6C63FF;
  --secondary-color: #FF6584;
  --dark-bg: #121212;
  --card-bg: rgba(25, 25, 35, 0.8);
  --card-hover: rgba(35, 35, 50, 0.9);
  --text-light: #E0E0E0;
  --text-lighter: #F5F5F7;
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a14 100%);
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.ftlt-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.ftlt-faq-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.ftlt-faq-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.ftlt-faq-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.ftlt-faq-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.6;
  color: #B0B0C0;
}

/* Glossy FAQ Items */
.ftlt-faq-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ftlt-faq-item:hover {
  background: var(--card-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.ftlt-faq-item.active {
  background: var(--card-hover);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

/* Question */
.ftlt-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ftlt-faq-question h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-lighter);
  transition: var(--transition);
  width: calc(100% - 40px);
}

.ftlt-faq-item.active .ftlt-faq-question h3 {
  color: var(--primary-color);
}

.ftlt-faq-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.ftlt-faq-icon i {
  transition: var(--transition);
  font-size: 1.2rem;
}

.ftlt-faq-item.active .ftlt-faq-icon {
  background: var(--primary-color);
  transform: rotate(180deg);
}

.ftlt-faq-item.active .ftlt-faq-icon i {
  color: white;
}

/* Answer */
.ftlt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 30px;
  position: relative;
}

.ftlt-faq-item.active .ftlt-faq-answer {
  max-height: 1000px;
  padding: 0 30px 25px;
}

.ftlt-faq-answer p {
  margin: 0;
  line-height: 1.8;
  color: #C0C0D0;
  font-size: 1.1rem;
  padding: 10px 0;
}

/* Decorative elements */
.ftlt-faq-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ftlt-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.ftlt-glow-purple {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
}

.ftlt-glow-pink {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -100px;
  left: -50px;
}

/* Contact section */
.ftlt-contact {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background: rgba(35, 35, 50, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ftlt-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-lighter);
}

.ftlt-contact p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.ftlt-contact-btn {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.ftlt-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .ftlt-faq-header h2 {
    font-size: 2.2rem;
  }
  
  .ftlt-faq-question {
    padding: 20px;
  }
  
  .ftlt-faq-question h3 {
    font-size: 1.2rem;
  }
  
  .ftlt-faq-answer p {
    font-size: 1rem;
  }
}