.elementor-335 .elementor-element.elementor-element-d26fe9b{--display:flex;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-43c0494 */.faq-section {
  width: 100%;
  padding: 40px 0 20px;
  font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
  direction: rtl;
}

/* Background Decoration */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 194, 245, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 194, 245, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(107, 194, 245, 0.12);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6BC2F5;
  margin-bottom: 20px;
  font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.badge-icon {
  font-size: 12px;
  animation: rotateStar 20s linear infinite;
}

@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.faq-title {
  font-size: 42px;
  font-weight: 600;
  font-family: 'Cairo', 'Playfair Display', serif;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.faq-title span {
  background: linear-gradient(135deg, #1a1a1a, #6BC2F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* FAQ Item */
.faq-item {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(107, 194, 245, 0.2);
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.faq-item:hover .faq-question {
  background: linear-gradient(135deg, #FFFFFF, #F8F9FA);
}

.question-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 194, 245, 0.1);
  border-radius: 50%;
  color: #6BC2F5;
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover .question-icon {
  background: #6BC2F5;
  color: white;
  transform: scale(1.05);
}

.question-text {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  transition: color 0.3s ease;
  font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-item:hover .question-text {
  color: #6BC2F5;
}

.question-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-item.active .question-arrow {
  transform: rotate(180deg);
  color: #6BC2F5;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #F8F9FA;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.answer-content {
  padding: 0 28px 24px 28px;
}

.answer-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.answer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(107, 194, 245, 0.08);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #6BC2F5;
  transition: all 0.3s ease;
  font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tag i {
  font-size: 10px;
}

.tag:hover {
  background: #6BC2F5;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
  .faq-container {
    padding: 0 20px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-title {
    font-size: 36px;
  }
  
  .question-text {
    font-size: 16px;
  }
  
  .question-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .answer-content {
    padding: 0 24px 20px 24px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 80px;
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-subtitle {
    font-size: 14px;
  }
  
  .question-text {
    font-size: 15px;
  }
  
  .answer-content p {
    font-size: 13px;
  }
  
  .tag {
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0 60px;
  }
  
  .faq-container {
    padding: 0 16px;
  }
  
  .faq-title {
    font-size: 28px;
  }
  
  .faq-badge {
    font-size: 10px;
  }
  
  .faq-question {
    padding: 16px 20px;
    gap: 12px;
  }
  
  .question-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .question-text {
    font-size: 14px;
  }
  
  .answer-content {
    padding: 0 20px 16px 20px;
  }
  
  .tag {
    font-size: 9px;
    padding: 3px 8px;
  }
}/* End custom CSS */