
.faq-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f5 100%);
  position: relative;
}

.section-header {
  margin-bottom: 30px;
}


.section-header span {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a52a2a;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  padding: 0 50px;
}

.section-header span::before,
.section-header span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #a52a2a, #e8d5c3);
  transform: translateY(-50%);
}

.section-header span::before {
  left: 0;
}

.section-header span::after {
  right: 0;
}




.faq-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-section .section-header h2 .highlight {
    color: #400C2C;
    position: relative;
}

.faq-section .section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}



.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Question */
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #400C2C 0%, #d4b48c 100%);
}

.faq-question h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h5 {
    color: #ffffff;
}

.faq-icon {
    font-size: 18px;
    color: #400C2C;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    color: #ffffff;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 800px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #400C2C;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.payment-methods span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #f8f5f2;
    border-radius: 40px;
    font-size: 14px;
    color: #1a1a1a;
}

.payment-methods i {
    font-size: 20px;
    color: #400C2C;
}

/* Links in FAQ */
.size-guide-link,
.rewards-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #400C2C;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.size-guide-link:hover,
.rewards-link:hover {
    color: #1a1a1a;
    gap: 12px;
}

.faq-answer a {
    color: #400C2C;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Support Banner */
.faq-contact-banner {
    max-width: 800px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-contact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 160, 123, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-contact-banner .banner-content {
    position: relative;
    z-index: 1;
}
.banner-content .fa-headset {
    color: #a52a2a;
    font-size: 40px;
    margin-bottom: 10px;
}
.faq-contact-banner i {
    margin-right: 7px ;
}

.faq-contact-banner h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-contact-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}




/* Responsive Design */
@media (max-width: 992px) {
    .faq-section {
        padding: 70px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 36px;
    }
    
    .faq-question h5 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h5 {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }
    
    .faq-contact-banner {
        padding: 30px 20px;
    }
    
    .faq-contact-banner h4 {
        font-size: 20px;
    }
    
    .btn-contact,
    .btn-call {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 24px;
    }
    
    .faq-section .section-header span::before,
    .faq-section .section-header span::after {
        width: 20px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h5 {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .payment-methods span {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
    
    .btn-contact,
    .btn-call {
        justify-content: center;
    }
}

/* Animation for FAQ Items */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: slideDown 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }