/* ========================================
   Home FAQ Section Styles
   ======================================== */

.cs_home_faq_section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.cs_faq_badge_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.cs_faq_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.cs_faq_badge i {
  font-size: 16px;
}

.cs_faq_main_title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cs_faq_subtitle {
  font-size: 17px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Left Column - Info Section */
.cs_faq_image_section {
  position: sticky;
  top: 100px;
}

.cs_faq_image_wrapper {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
  position: relative;
  overflow: hidden;
}

.cs_faq_image_wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cs_faq_icon_box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.cs_faq_image_title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.cs_faq_image_text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FAQ Stats Grid */
.cs_faq_stats_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.cs_faq_stat_item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cs_faq_stat_icon {
  width: 50px;
  height: 50px;
  background: rgba(30, 64, 175, 0.1);
  border: 2px solid #1e40af;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1e40af;
}

.cs_faq_stat_content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px 0;
}

.cs_faq_stat_content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* FAQ Contact Button */
.cs_faq_contact_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  width: 100%;
  justify-content: center;
}

.cs_faq_contact_btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cs_faq_contact_btn:hover {
  background: #1e40af;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
}

.cs_faq_contact_btn:hover i {
  transform: translateX(5px);
}

/* Right Column - FAQ Accordion */
.cs_faq_accordion_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cs_faq_item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.cs_faq_item:hover {
  border-color: #22c55e;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.cs_faq_item.active {
  border-color: #22c55e;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.12);
}

.cs_faq_question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.cs_faq_question:hover {
  background: #f8f9fa;
}

.cs_faq_question h4 {
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.cs_faq_toggle {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cs_faq_item.active .cs_faq_toggle {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  transform: rotate(45deg);
}

.cs_faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.cs_faq_item.active .cs_faq_answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.cs_faq_answer p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .cs_faq_main_title {
    font-size: 38px;
  }
  
  .cs_faq_image_wrapper {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .cs_faq_image_section {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
  
  .cs_faq_main_title {
    font-size: 34px;
  }
  
  .cs_faq_stats_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cs_faq_main_title {
    font-size: 30px;
  }
  
  .cs_faq_subtitle {
    font-size: 16px;
  }
  
  .cs_faq_image_wrapper {
    padding: 30px 25px;
  }
  
  .cs_faq_icon_box {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .cs_faq_image_title {
    font-size: 24px;
  }
  
  .cs_faq_question {
    padding: 20px 22px;
  }
  
  .cs_faq_question h4 {
    font-size: 16px;
  }
  
  .cs_faq_toggle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .cs_faq_item.active .cs_faq_answer {
    padding: 0 22px 20px 22px;
  }
  
  .cs_faq_answer p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .cs_faq_main_title {
    font-size: 26px;
  }
  
  .cs_faq_badge {
    padding: 6px 20px;
    font-size: 13px;
  }
  
  .cs_faq_image_title {
    font-size: 22px;
  }
  
  .cs_faq_question {
    padding: 18px;
    gap: 15px;
  }
  
  .cs_faq_question h4 {
    font-size: 15px;
  }
  
  .cs_faq_contact_btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

