/* ============================================
   Modern FAQs Page Styles
   ============================================ */

/* Hero Section */
.faqs-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.faqs-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.faqs-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.faqs-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faqs-hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 400;
}

/* FAQs Content Section */
.faqs-content-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.faqs-accordion-modern {
    margin-bottom: 40px;
}

.faq-item-modern {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item-modern:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item-modern.active {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.faq-question-modern {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question-modern:hover {
    background: #f8fafc;
}

.faq-item-modern.active .faq-question-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item-modern.active .faq-number {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.05);
}

.faq-question-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
}

.faq-item-modern.active .faq-question-content h3 {
    color: #667eea;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-toggle-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.faq-toggle-icon i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 28px 24px 88px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content strong {
    color: #334155;
    font-weight: 600;
}

/* No FAQs Message */
.no-faqs-message {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.no-faqs-icon {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.no-faqs-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.no-faqs-message p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Help Section */
.faqs-help-section {
    margin-top: 60px;
}

.help-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.help-icon {
    font-size: 48px;
    flex-shrink: 0;
    opacity: 0.9;
}

.help-content {
    flex: 1;
}

.help-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.help-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #667eea;
    text-decoration: none;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqs-hero-section {
        padding: 60px 0 40px;
        margin-top: 70px;
    }

    .faqs-hero-title {
        font-size: 36px;
    }

    .faqs-hero-subtitle {
        font-size: 18px;
    }

    .faqs-content-section {
        padding: 40px 0 60px;
    }

    .faq-question-modern {
        padding: 20px;
    }

    .faq-question-content {
        gap: 12px;
    }

    .faq-number {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .faq-question-content h3 {
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 68px;
        font-size: 15px;
    }

    .help-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .help-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .faqs-hero-title {
        font-size: 28px;
    }

    .faqs-hero-subtitle {
        font-size: 16px;
    }

    .faq-question-modern {
        padding: 16px;
    }

    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .faq-question-content h3 {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 16px 16px 60px;
        font-size: 14px;
    }

    .no-faqs-message {
        padding: 60px 20px;
    }

    .no-faqs-icon {
        font-size: 60px;
    }
}

