/**
 * Custom About Section - Flat, Modern, Sleek Design
 * Following Design System - No Gradients, Clean Typography
 */

/* About Section Container */
.about-area-two {
    background: #FFFFFF;
    padding: 80px 0;
}

/* Section Title Styling */
.about__content .section__title .sub-title {
    display: inline-block;
    color: #1976D2 !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Cairo', 'beIN', sans-serif;
    background: #E3F2FD;
    padding: 6px 16px;
    border-radius: 6px;
}

.about__content .section__title .title {
    color: #1A1A1A !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Cairo', 'beIN', sans-serif;
}

.about__content .desc {
    color: #5F6368 !important;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-family: 'Cairo', 'beIN', sans-serif;
}

/* FAQ Image Wrapper - Clean Modern Look */
.faq__img-wrap {
    position: relative;
    padding: 0;
}

.faq__img-two {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
}

.faq__img-two img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Remove or simplify decorative shapes */
.faq__img .shape-one,
.faq__img .shape-two {
    display: none;
}

/* Curved Text Styling - Minimal */
.faq__round-text {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 2;
}

.curved-circle {
    width: 120px;
    height: 120px;
    background: #1976D2;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 4px 16px rgba(25, 118, 210, 0.2);
    font-family: 'Cairo', 'beIN', sans-serif;
}

/* Accordion Styling - Flat Modern Design */
.faq__wrap {
    margin-top: 24px;
}

.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid #E0E0E0 !important;
    border-radius: 10px !important;
    margin-bottom: 12px;
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.2s ease;
}

.accordion-item:hover {
    border-color: #1976D2 !important;
    box-shadow: 0px 4px 12px rgba(25, 118, 210, 0.08);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: #FFFFFF !important;
    color: #1A1A1A !important;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 24px !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'Cairo', 'beIN', sans-serif;
    transition: all 0.2s ease;
}

.accordion-button:not(.collapsed) {
    background: #F0F4FF !important;
    color: #1976D2 !important;
    border-bottom: 1px solid #E0E0E0;
}

.accordion-button:hover {
    background: #F9FAFB !important;
}

.accordion-button::after {
    width: 24px;
    height: 24px;
    background-color: #F4F6F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235F6368' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.accordion-button:not(.collapsed)::after {
    background-color: #1976D2;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 20px 24px 24px 24px;
    background: #FFFFFF;
    color: #5F6368 !important;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Cairo', 'beIN', sans-serif;
}

.accordion-body p {
    margin: 0;
    color: #5F6368 !important;
}

/* RTL Support */
[dir="rtl"] .faq__round-text {
    right: auto;
    left: -30px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about__content .section__title .title {
        font-size: 28px;
    }

    .about-area-two {
        padding: 60px 0;
    }

    .faq__round-text {
        top: -20px;
        right: -20px;
    }

    .curved-circle {
        width: 100px;
        height: 100px;
        font-size: 10px;
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .about__content .section__title .title {
        font-size: 24px;
    }

    .about__content .desc {
        font-size: 15px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 16px 20px !important;
    }

    .accordion-body {
        padding: 16px 20px 20px 20px;
        font-size: 14px;
    }

    .faq__img-two {
        margin-bottom: 40px;
    }
}
