/* Enhanced FAQ Section Styles */
.faq-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    z-index: 1;
  }
  
  

  
  
  /* Enhanced FAQ container */
  .faq-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Enhanced FAQ items */
  .faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(173, 20, 87, 0.06);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
  }
  
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(173, 20, 87, 0.1);
  }
  
  .faq-item.active {
    border-left: 4px solid var(--brand-color-1);
  }
  
  /* Enhanced question styling */
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover h3 {
    color: var(--brand-color-3);
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color-main);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 16px;
  }
  
  .faq-question h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--brand-color-1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-question h3::before {
    opacity: 1;
  }
  
  .faq-item.active .faq-question h3 {
    color: var(--brand-color-3);
  }
  
  /* Enhanced toggle button */
  .faq-toggle {
    transition: all 0.4s ease;
    background-color: var(--bg-light);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .faq-toggle svg {
    transition: all 0.4s ease;
    stroke: var(--brand-color-1);
  }
  
  .faq-item.active .faq-toggle {
    background-color: rgba(233, 30, 99, 0.1);
    transform: rotate(180deg);
  }
  
  .faq-item:hover .faq-toggle {
    background-color: rgba(233, 30, 99, 0.1);
  }
  
  /* Enhanced answer styling */
  .faq-answer {
    padding: 0 28px 0 44px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  
  .faq-answer::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-color-1) 0%, rgba(233, 30, 99, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .faq-item.active .faq-answer::before {
    opacity: 1;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 28px 28px 44px;
    max-height: 1000px; /* Arbitrary large value for transition */
  }
  
  .faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-color-secondary);
    font-size: 16px;
  }
  
  /* Enhanced animations for background elements */
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.15; }
    100% { transform: scale(1); opacity: 0.1; }
  }
  
  @keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
  }
  
  .faq-section .data-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color-1), var(--brand-color-3));
    opacity: 0.1;
  }
  
  .faq-section .circle-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 2%;
    animation: pulse 8s infinite ease-in-out, float 15s infinite ease-in-out;
  }
  
  .faq-section .circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 5%;
    animation: pulse 6s infinite ease-in-out, float 12s infinite ease-in-out reverse;
  }
  
  .faq-section .circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 15%;
    animation: pulse 9s infinite ease-in-out, float 18s infinite ease-in-out;
    animation-delay: 2s;
  }
  
  .faq-section .circle-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    animation: pulse 7s infinite ease-in-out, float 14s infinite ease-in-out reverse;
    animation-delay: 1.5s;
  }
  
  /* Add a highlight effect when opening the FAQ */
  @keyframes highlight {
    0% { background-color: rgba(233, 30, 99, 0.1); }
    100% { background-color: transparent; }
  }
  
  .faq-item.active {
    animation: highlight 3s ease-out;
  }
  
  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    .faq-section {
      padding: 80px 20px;
    }
    
    .faq-section .section-header h2 {
      font-size: 32px;
    }
    
    .faq-question {
      padding: 20px 20px;
    }
    
    .faq-question h3 {
      font-size: 17px;
      padding-left: 12px;
    }
    
    .faq-answer {
      padding: 0 20px 0 32px;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 20px 20px 32px;
    }
    
    .faq-section .circle-1,
    .faq-section .circle-2,
    .faq-section .circle-3,
    .faq-section .circle-4 {
      opacity: 0.05;
    }
  }