/* FAQ Page Specific CSS */

.faq-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(8, 15, 30, 1) 0%, rgba(20, 35, 60, 1) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(50, 140, 193, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.faq-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(50, 140, 193, 0.2);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(50, 140, 193, 0.4);
}

.faq-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #b3e5fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #a0b2c6;
    line-height: 1.6;
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(50, 140, 193, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-family: var(--font-heading);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .faq-answer {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer-inner {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.cta-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #062235 100%);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section .lead-text {
    color: #eaf4ff;
    opacity: 0.9;
}

@media (max-width: 575.98px) {
    .faq-hero h1 { font-size: 2.25rem; }
}
