﻿/* =====================================
   ABOUT US PAGE
===================================== */

.about-company-section {
    font-family: 'Vazirmatn',sans-serif;
}

/* کارت شرکت */

.company-box {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    margin-bottom: 40px;
}

/* هدر شرکت */

.company-header {
    background: linear-gradient(135deg,#14213d,#1f335e);
    padding: 28px;
    text-align: center;
    position: relative;
}

    .company-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg,#d4af37,#f7d774,#d4af37);
    }

    .company-header h2 {
        color: #fff;
        margin: 0;
        font-weight: 800;
        font-size: 30px;
    }

    .company-header span {
        display: inline-block;
        margin-top: 10px;
        color: #d4af37;
        font-size: 14px;
        font-weight: 600;
    }

/* محتوای شرکت */

.company-content {
    padding: 35px;
}

    .company-content p {
        line-height: 2.1;
    }

/* باکس فعالیت */

.service-box {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 22px;
    margin: 30px 0;
}

    .service-box h5 {
        margin-bottom: 18px;
        font-weight: 700;
    }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .service-tags span {
        background: #d4af37;
        color: #14213d;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
    }

/* ======================
   TEAM
====================== */

.team-card {
    margin-top: 35px;
}

    .team-card h3 {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 800;
        color: #d4af37;
    }

.team-list-modern {
    margin-top: 20px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: .3s;
}

    .team-row:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }

.team-position {
    min-width: 230px;
    font-weight: 800;
    color: #d4af37;
}

.team-person {
    flex: 1;
    font-weight: 700;
}

.team-info {
    opacity: .8;
    font-size: 14px;
}

/* ======================
   ORGANIZATION CHART
====================== */

.org-chart-box {
    margin-top: 50px;
    text-align: center;
}

    .org-chart-box h4 {
        margin-bottom: 25px;
        color: #d4af37;
        font-weight: 800;
    }

.chart-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 18px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

/* ======================
   LIGHT MODE
====================== */

[data-bs-theme="light"] .company-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
}

[data-bs-theme="light"] .service-box {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,.08);
}

[data-bs-theme="light"] .team-row {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
}

[data-bs-theme="light"] .team-person {
    color: #111827;
}

[data-bs-theme="light"] .company-content {
    color: #374151;
}

/* ======================
   MOBILE
====================== */

@media(max-width:768px) {

    .company-header {
        padding: 22px;
    }

        .company-header h2 {
            font-size: 22px;
        }

    .company-content {
        padding: 20px;
    }

    .team-row {
        flex-direction: column;
        text-align: center;
    }

    .team-position {
        min-width: auto;
    }

    .service-tags {
        justify-content: center;
    }
}
