/* FAQ Page Specific Styles */

.faq-hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    text-align: center;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* FAQ Content */
.faq-content {
    padding: var(--spacing-lg) 0;
    background: white;
}

.faq-section {
    margin-bottom: var(--spacing-xl);
}

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

.faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* FAQ Items */
.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-number {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

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

.faq-answer ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.faq-answer li {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.faq-answer a:hover {
    opacity: 0.8;
}

.faq-warning {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: #fef3f2;
    border-left: 3px solid #dc2626;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.faq-warning strong {
    color: #dc2626;
}

/* FAQ CTA */
.faq-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.faq-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.faq-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2rem;
    }

    .faq-hero-subtitle {
        font-size: 1rem;
    }

    .faq-section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: var(--spacing-sm);
    }

    .faq-answer {
        padding: 0 var(--spacing-sm);
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
    }

    .faq-cta-title {
        font-size: 1.75rem;
    }

    .faq-cta-subtitle {
        font-size: 1rem;
    }
}

