/* FAQ Page Styles */

.faq-page {
    background: linear-gradient(135deg, #0d0921 0%, #160d30 50%, #180d3a 100%);
    color: #fff;
    padding: 0;
}

/* Logo Header */
.faq-logo-header {
    border-bottom: 1px solid rgba(220, 252, 23, 0.1);
    padding: 30px 0;
    background: rgba(24, 13, 58, 0.5);
    backdrop-filter: blur(18px);
    text-align: center;
}

.faq-logo-link {
    display: inline-block;
    text-decoration: none;
}

.faq-logo {
    height: 32px;
    width: auto;
    max-width: 160px;
    transition: transform 0.3s ease;
}

.faq-logo-link:hover .faq-logo {
    transform: scale(1.08);
}

/* Content padding */
.faq-page > section,
.faq-page > div {
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.faq-hero {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(220, 252, 23, 0.1);
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.faq-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search */
.faq-search {
    max-width: 500px;
    margin: 0 auto;
}

.faq-search input {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    border: 2px solid rgba(220, 252, 23, 0.3);
    border-radius: 8px;
    background: rgba(24, 13, 58, 0.8);
    backdrop-filter: blur(18px);
    color: #fff;
    transition: all 0.3s ease;
}

.faq-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.faq-search input:focus {
    outline: none;
    border-color: #DCFC17;
    box-shadow: 0 0 12px rgba(220, 252, 23, 0.3);
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(220, 252, 23, 0.1);
}

.faq-section:last-child {
    border-bottom: none;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #DCFC17;
    text-transform: capitalize;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: rgba(80, 57, 140, 0.15);
    border: 1px solid rgba(220, 252, 23, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: rgba(80, 57, 140, 0.25);
    border-color: rgba(220, 252, 23, 0.3);
}

.faq-question:focus {
    outline: 2px solid #DCFC17;
    outline-offset: 2px;
}

/* FAQ Answers */
.faq-answer {
    padding: 20px 20px 20px 40px;
    background: rgba(24, 13, 58, 0.5);
    border-left: 3px solid #DCFC17;
    margin-top: 8px;
    border-radius: 0 8px 8px 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

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

.faq-answer strong {
    color: #DCFC17;
}

.faq-answer a {
    color: #DCFC17;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: #fff;
}

/* CTA Section */
.faq-cta {
    background: rgba(80, 57, 140, 0.2);
    border: 1px solid rgba(220, 252, 23, 0.15);
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 12px;
}

.faq-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #DCFC17;
}

.faq-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.faq-cta .btn {
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 50px 0;
    }

    .faq-hero h1 {
        font-size: 32px;
    }

    .faq-section h2 {
        font-size: 22px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 16px 16px 16px 20px;
    }

    .faq-cta h2 {
        font-size: 24px;
    }
}
