/* =====================================================
   ATRIN TEJARAT — About Us Page (درباره ما)
   ===================================================== */

.about-page-main {
    background-color: #ECEBF2;
    direction: rtl;
    font-family: 'Yekan Bakh', Tahoma, sans-serif;
    padding-bottom: 80px;
}

/* =====================================================
   SECTION 1: HERO — Split card with image + title
   ===================================================== */
.about-hero-section {
    padding: 50px 0 80px 0;
    position: relative;
    overflow: visible;
}

.about-hero-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21,49,82,0.07);
    min-height: 420px;
}

/* Right text side */
.about-hero-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,185,0,0.12);
    color: #153152;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
}

.about-hero-badge i {
    color: #FBB900;
    font-size: 16px;
}

.about-hero-title {
    font-family: 'Rokh Pro','Yekan Bakh', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #153152;
    line-height: 1.45;
    margin: 0;
}

.about-hero-desc {
    font-size: 15.5px;
    line-height: 2.0;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

.about-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-stat-number {
    font-family: 'Rokh Pro','Yekan Bakh', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #153152;
    line-height: 1;
}

.about-stat-number span {
    color: #FBB900;
}

.about-stat-label {
    font-size: 12.5px;
    color: #888;
    font-weight: 600;
}

/* Left image side */
.about-hero-image {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-hero-image:hover img {
    transform: scale(1.03);
}

.about-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21,49,82,0.35) 0%, transparent 60%);
    pointer-events: none;
}

/* =====================================================
   SECTION 2: STORY / VALUES — Header on top, 2 columns below
   ===================================================== */
.about-story-section {
    padding: 60px 0;
}

.about-story-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-story-pre-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #FBB900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-story-title {
    font-family: 'Rokh Pro','Yekan Bakh', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #153152;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.5;
}

/* Two-column layout below the header */
.about-story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Column 1: Value Cards stacked */
.about-story-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 8px 30px rgba(21,49,82,0.05);
    border: 1px solid rgba(21,49,82,0.04);
    transition: all 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(21,49,82,0.10);
    border-color: rgba(251,185,0,0.3);
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #153152 0%, #1e4a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FBB900;
    font-size: 22px;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, #FBB900 0%, #e5a700 100%);
    color: #153152;
}

.about-value-content h4 {
    font-family: 'Yekan Bakh', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #153152;
    margin: 0 0 8px 0;
}

.about-value-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Column 2: Image + Quote stacked */
.about-story-image-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-story-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(21,49,82,0.10);
}

.about-story-img-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-story-img-main:hover img {
    transform: scale(1.04);
}

.about-story-quote {
    background: linear-gradient(135deg, #153152 0%, #1e4a7a 100%);
    border-radius: 16px;
    padding: 24px 26px;
    color: #fff;
    position: relative;
}

.about-story-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(251,185,0,0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.about-story-quote p {
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
}

.about-story-quote-author {
    font-size: 13px;
    font-weight: 700;
    color: #FBB900;
}

/* =====================================================
   SECTION 3: TEAM / MISSION — Full-width dark card
   ===================================================== */
.about-mission-section {
    padding: 0 0 20px 0;
}

.about-mission-card {
    background: linear-gradient(135deg, #153152 0%, #0f243d 100%);
    border-radius: 24px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.about-mission-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.about-mission-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(251,185,0,0.06);
    bottom: -60px;
    right: 10%;
    pointer-events: none;
}

.about-mission-inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-mission-text {
    flex: 1;
}

.about-mission-pre {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #FBB900;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-mission-title {
    font-family: 'Rokh Pro','Yekan Bakh', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.about-mission-desc {
    font-size: 15px;
    line-height: 2.0;
    color: rgba(255,255,255,0.75);
    margin: 0 0 30px 0;
    text-align: justify;
}

.about-mission-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-mission-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
}

.about-mission-bullets li i {
    color: #FBB900;
    font-size: 18px;
    flex-shrink: 0;
}

.about-mission-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FBB900;
    color: #153152;
    font-family: 'Yekan Bakh', sans-serif;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-mission-cta:hover {
    background: #e5a700;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251,185,0,0.3);
    color: #153152;
}

.about-mission-image-col {
    flex: 0 0 38%;
}

.about-mission-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-mission-img-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-mission-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    text-align: center;
}

.about-mission-img-badge strong {
    display: block;
    font-size: 22px;
    font-family: 'Rokh Pro','Yekan Bakh', sans-serif;
    font-weight: 900;
    color: #FBB900;
}

.about-mission-img-badge span {
    font-size: 12px;
    opacity: 0.85;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .about-hero-inner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .about-hero-image {
        flex: 0 0 280px;
        height: 280px;
        width: 100%;
    }

    .about-hero-text {
        padding: 35px 28px;
    }

    .about-hero-title {
        font-size: 26px;
    }

    /* Section 2: collapse to single column on tablet */
    .about-story-body {
        grid-template-columns: 1fr;
    }

    .about-mission-inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-mission-card {
        padding: 50px 30px;
    }

    .about-mission-image-col {
        flex: none;
        width: 100%;
    }

    .about-mission-img-frame img {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .about-hero-section {
        padding: 100px 0 50px 0;
    }

    .about-hero-title {
        font-size: 22px;
    }

    .about-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .about-story-title {
        font-size: 22px;
    }

    .about-mission-title {
        font-size: 20px;
    }

    .about-mission-card {
        padding: 40px 22px;
    }
}
