/* ==========================================
   About Page Styles
   Responsive & RTL Ready
========================================== */

/* Breadcrumb */
.breadcrumb-wrapper {
    padding: 120px 0 60px;
    position: relative;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-heading {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-heading h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-items li {
    color: #fff;
}

.breadcrumb-items a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-items a:hover {
    color: #951010;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Section Title */
.section-title {
    max-width: 700px;
    margin: 0 auto;
}

.section-title .sub-title {
    color: #951010;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

/* About Images */
.about-image-wrapper {
    position: relative;
}

.about-image-single {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
}

.about-image-single:hover img {
    transform: scale(1.05);
}

/* About Content */
.about-content p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: 0.3s;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    background: #951010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .icon i {
    font-size: 20px;
    color: #fff;
}

.feature-item .content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.feature-item .content p {
    margin-bottom: 0;
    color: #666;
    font-size: 15px;
}

/* Value Cards */
.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-color: #951010;
}

.value-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #951010 0%, #951010 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.value-card:hover .icon {
    transform: scale(1.1);
}

.value-card .icon i {
    font-size: 32px;
    color: #fff;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center !important;
}

.value-card p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}

/* Stats Cards */
.stats-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.stats-card:hover {
    border-color: #951010;
    transform: translateY(-5px);
}

.stats-card .icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.stats-card:hover .icon {
    background: #951010;
}

.stats-card .icon i {
    font-size: 28px;
    color: #951010;
    transition: 0.4s;
}

.stats-card:hover .icon i {
    color: #fff;
}

.stats-card .content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #951010;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
    text-align: center;
}

.stats-card .content h2::after {
    content: '+';
    font-size: 36px;
    margin-left: 5px;
}

.stats-card .content p {
    margin-bottom: 0;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }

    .page-heading h1 {
        font-size: 36px;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .page-heading h1 {
        font-size: 28px;
    }

    .breadcrumb-wrapper {
        padding: 100px 0 50px;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .value-card,
    .stats-card {
        padding: 30px 20px;
    }

    .stats-card .content h2 {
        font-size: 36px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item .icon {
        margin: 0 auto;
    }
}

/* ==========================================
   RTL Support
========================================== */
html[dir="rtl"] .section-title {
    text-align: center;
}

html[dir="rtl"] .about-content {
    text-align: right;
}

html[dir="rtl"] .value-card,
html[dir="rtl"] .stats-card {
    text-align: center;
}

html[dir="rtl"] .breadcrumb-items {
    flex-direction: row-reverse;
}

html[dir="rtl"] .breadcrumb-items i {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    html[dir="rtl"] .feature-item {
        flex-direction: column;
    }
}
