* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================
   FAQ SECTION STYLES
======================== */

/* FAQ Section Container */
.faq-section {
    background-color: #000000;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

/* Background effects */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 138, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(229, 46, 113, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(0, 85, 255, 0.03) 0%, transparent 30%);
    z-index: 1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    border-radius: 3px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 138, 0, 0.2);
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 138, 0, 0.4);
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.1);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 22px 25px;
    text-align: left;
    background: rgba(30, 30, 30, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff8a00, #e52e71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background: rgba(40, 40, 40, 0.9);
    padding-left: 30px;
}

.faq-question:hover::before {
    opacity: 1;
}

.question-number {
    color: #ff8a00;
    font-weight: 700;
    margin-right: 15px;
    min-width: 25px;
    font-size: 1.1rem;
}

.question-text {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-question:hover .icon {
    background: rgba(255, 138, 0, 0.2);
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: rgba(10, 10, 10, 0.7);
}

.faq-answer p {
    padding: 25px 0;
    margin: 0;
    color: #cccccc;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 138, 0, 0.1);
}

/* Active FAQ Item */
.faq-item.active {
    border-color: rgba(255, 138, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.15);
}

.faq-item.active .faq-question {
    background: rgba(40, 40, 40, 0.95);
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .icon {
    background: rgba(255, 138, 0, 0.3);
    transform: rotate(45deg);
    color: #ffffff;
}

.faq-item.active .icon i {
    transform: rotate(0deg);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255, 138, 0, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.1);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.faq-cta p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #cccccc;
    margin: 0;
}

.faq-cta a {
    color: #ff8a00;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.faq-cta a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    transition: width 0.3s ease;
}

.faq-cta a:hover {
    color: #ffffff;
}

.faq-cta a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================
   RESPONSIVE STYLES
======================== */

/* Tablet */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0 60px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        padding: 20px 0;
    }
    
    .question-number {
        margin-right: 12px;
    }
    
    .faq-cta {
        padding: 20px;
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .faq-section {
        padding: 70px 0 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
        align-items: flex-start;
    }
    
    .question-text {
        line-height: 1.4;
    }
    
    .icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-left: 10px;
        margin-top: 2px;
    }
    
    .faq-answer p {
        padding: 18px 0;
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: 18px;
        margin-top: 30px;
    }
    
    .faq-cta p {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .faq-question {
        padding: 14px 15px;
    }
    
    .question-number {
        margin-right: 8px;
        min-width: 20px;
    }
    
    .faq-answer p {
        padding: 15px 0;
    }
}