/* FAQ Page Styles - Compatible with RTL */

/* FAQ Header */
.page-header {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion Styles */
.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: rgba(13, 110, 253, 0.05);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* RTL specific adjustment for accordion arrow */
html[dir="rtl"] .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.accordion-body {
    padding: 20px 25px;
    line-height: 1.6;
}

/* List styling */
.list-group-item i {
    margin-left: 0.5rem;
}

/* Icon Boxes */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.values-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

/* Cards */
.card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background-blend-mode: overlay;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .icon-box, .values-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* RTL specific adjustments */
html[dir="rtl"] .list-group-item i {
    margin-left: 0.5rem;
    margin-right: 0;
}

html[dir="rtl"] .fa-check-circle,
html[dir="rtl"] .fa-info-circle {
    margin-left: 0.5rem;
    margin-right: 0;
}
