/**
 * FAQ Section Styles
 */

.xeora-faq {
    background: linear-gradient(180deg, #f7fafc 0%, white 100%);
}

.xeora-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.xeora-faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.xeora-faq-item {
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.xeora-faq-item:hover {
    border-color: var(--primary-color, #208091);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.xeora-faq-item.active {
    border-color: var(--primary-color, #208091);
}

.xeora-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    text-align: left;
    transition: all 0.3s ease;
}

.xeora-faq-question:hover {
    color: var(--primary-color, #208091);
}

.xeora-btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary-color, #208091);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.xeora-btn-faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 128, 145, 0.3);
}

.xeora-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #718096;
}

.xeora-faq-item.active .xeora-faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color, #208091);
}

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

.xeora-faq-item.active .xeora-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.xeora-faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #4a5568;
    font-size: 15px;
}

.xeora-faq-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    border: 2px dashed var(--primary-color, #208091);
}

.xeora-faq-cta p {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1a202c;
}

.xeora-btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary-color, #208091);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.xeora-btn-faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 128, 145, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .xeora-faq-grid {
        grid-template-columns: 1fr;
    }
}