/* FAQ Page Specific Styles */
.faq-page .faq-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8rem 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-page .faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
}

.faq-page .faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.faq-page .faq-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #e6f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-page .faq-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-page .search-box {
  max-width: 500px;
  margin: 2rem auto;
  position: relative;
}

.faq-page .search-box input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-page .search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.faq-page .search-box input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.faq-page .search-box i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

.faq-page .faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.faq-page .category-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-page .category-btn:hover,
.faq-page .category-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.faq-page .faq-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.faq-page .stat-item {
  text-align: center;
}

.faq-page .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.faq-page .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.faq-page .faq-content {
  padding: 6rem 5%;
  background: var(--light-color);
}

.faq-page .faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-page .faq-category-group {
  margin-bottom: 4rem;
}

.faq-page .category-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--gradient-primary);
}

.faq-page .faq-item {
  margin-bottom: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-page .faq-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.faq-page .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-page .faq-question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.faq-page .faq-question:hover::after {
  width: 100%;
}

.faq-page .faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark-color);
  font-weight: 600;
  flex: 1;
}

.faq-page .faq-question i {
  color: var(--primary-color);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.faq-page .faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.faq-page .faq-answer p {
  margin: 0;
  padding: 2rem;
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-page .faq-item.active .faq-question {
  background: var(--gradient-primary);
  color: white;
}

.faq-page .faq-item.active .faq-question h3 {
  color: white;
}

.faq-page .faq-item.active .faq-question i {
  color: white;
  transform: rotate(180deg);
}

.faq-page .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0;
}

.faq-page .faq-cta {
  background: white;
  padding: 6rem 5%;
  border-top: 1px solid #e9ecef;
}

.faq-page .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.faq-page .cta-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-page .cta-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.faq-page .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq-page .cta-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-page .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.faq-page .feature-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(10px);
}

.faq-page .feature-item:hover i,
.faq-page .feature-item:hover h4,
.faq-page .feature-item:hover p {
  color: white;
}

.faq-page .feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.faq-page .feature-item h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.faq-page .feature-item p {
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .faq-page .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .faq-page .cta-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .faq-page .faq-hero h1 {
    font-size: 2.5rem;
  }
  
  .faq-page .faq-hero p {
    font-size: 1.1rem;
  }
  
  .faq-page .faq-categories {
    gap: 0.5rem;
  }
  
  .faq-page .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .faq-page .faq-stats {
    gap: 2rem;
  }
  
  .faq-page .stat-number {
    font-size: 2rem;
  }
  
  .faq-page .faq-question {
    padding: 1.5rem;
  }
  
  .faq-page .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-page .faq-answer p {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .faq-page .faq-hero h1 {
    font-size: 2rem;
  }
  
  .faq-page .faq-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .faq-page .category-title {
    font-size: 1.8rem;
  }
  
  .faq-page .cta-content h2 {
    font-size: 2rem;
  }
  
  .faq-page .cta-buttons {
    flex-direction: column;
  }
  
  .faq-page .feature-item {
    padding: 1rem;
  }
}