/* ============================================
   FAQ SECTION - REDESIGNED
   ============================================ */

.faq-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

/* Background Pattern */
.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.faq-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.faq-badge-icon {
    font-size: 1.5rem;
}

.faq-badge-text {
    font-weight: 600;
    color: #FF6B35;
    font-size: 1rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-highlight {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.faq-accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.faq-accordion-header:hover {
    background: rgba(255, 107, 53, 0.02);
}

.faq-accordion-item.active .faq-accordion-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.faq-question-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: white;
    font-weight: 700;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.4;
}

.faq-icon-wrapper {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: #FF6B35;
    transition: all 0.3s ease;
}

.faq-icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-accordion-item.active .faq-icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion-item.active .faq-icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* FAQ Content */
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 2000px;
}

.faq-answer-wrapper {
    padding: 0 2rem 2rem 2rem;
}

.faq-answer-intro {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* FAQ Packages Grid */
.faq-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-package-mini {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-package-mini:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.faq-package-mini.popular {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
}

.faq-package-ribbon {
    position: absolute;
    top: 10px;
    right: -5px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.faq-package-header {
    margin-bottom: 1rem;
}

.faq-package-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-package-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.faq-package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.faq-package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
}

.faq-package-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

/* FAQ Info Box */
.faq-info-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(33, 150, 243, 0.1));
    border-right: 4px solid #2196F3;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.faq-info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.faq-info-content h4 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.faq-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.faq-info-content ul li {
    padding: 0.4rem 0;
    color: #555;
    line-height: 1.6;
}

.faq-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* FAQ Payment Methods */
.faq-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.faq-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-payment-item:hover {
    border-color: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.faq-payment-item i {
    font-size: 2rem;
    color: #FF6B35;
}

.faq-payment-item span {
    font-weight: 600;
    color: #1A1A1A;
}

.faq-payment-item small {
    font-size: 0.85rem;
    color: #666;
}

.faq-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-radius: 10px;
    margin-top: 1.5rem;
}

.faq-security-note i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.faq-security-note span {
    font-weight: 600;
    color: #2E7D32;
}

/* FAQ Trial Box */
.faq-trial-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1rem;
}

.faq-trial-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.faq-trial-content h4 {
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.faq-trial-content > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-trial-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.faq-trial-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #555;
}

.faq-trial-features i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.faq-trial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.faq-trial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.faq-trial-btn i {
    font-size: 1.3rem;
}

/* FAQ Steps */
.faq-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.faq-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-step:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
}

.faq-step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.faq-step-content h4 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.faq-step-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.faq-time-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border-radius: 10px;
    margin-top: 1.5rem;
}

.faq-time-note i {
    font-size: 1.3rem;
    color: #FFA000;
}

.faq-time-note span {
    color: #555;
}

/* FAQ Devices Comparison */
.faq-devices-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.faq-device-option {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-device-option:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
}

.faq-device-option.premium {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    border-color: #FF6B35;
}

.faq-device-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-device-option h4 {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.faq-device-option p {
    color: #666;
    margin-bottom: 1rem;
}

.faq-device-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* FAQ Footer */
.faq-footer {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.faq-footer-content h3 {
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.faq-footer-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.faq-footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-faq-more,
.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-faq-more {
    background: white;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-faq-more:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-faq-contact {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-faq-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header {
        margin-bottom: 2.5rem;
    }
    
    .faq-accordion-header {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer-wrapper {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1.05rem;
    }
    
    .faq-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-trial-box,
    .faq-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-footer-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.6rem;
    }
    
    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-payment-methods {
        grid-template-columns: 1fr;
    }
}
