        :root {
            --primary: #0f172a;
            --accent: #3b82f6;
            --bg-body: #f8fafc;
            --bg-white: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --container: 1280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
         }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: color 0.2s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            font-family: 'Vazirmatn', sans-serif;
            font-size: 0.95rem;
        }

        .btn-primary { background-color: var(--primary); color: white; }
        .btn-primary:hover { background-color: #334155; }

        .btn-outline { border-color: var(--border); background-color: white; color: var(--text-main); }
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 { font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
        .section-title p { color: var(--text-muted); }

        /* نو بار بالا */
        .top-bar {
            background-color: var(--primary);
            color: #cbd5e1;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .top-bar-content { display: flex; justify-content: space-between; align-items: center; }
        .top-info span { margin-inline-start: 20px; }
        .top-info i { margin-inline-end: 5px; color: var(--accent); }
        .lang-select {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            outline: none;
            cursor: pointer;
            font-family: 'Vazirmatn', sans-serif;
        }

        /* بنر بزرگ */
        .about-hero {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
        }
        .about-hero img { width: 100%; height: 100%; object-fit: cover; }
        .about-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 50%, rgba(15,23,42,0.1) 100%);
        }
        .about-hero-content {
            position: absolute;
            bottom: 0; right: 0; left: 0;
            z-index: 2;
            padding: 60px 0;
        }
        .about-hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }
        .about-hero-text p {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            max-width: 500px;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            margin-bottom: 16px;
        }
        .breadcrumb a { color: rgba(255,255,255,0.6); }
        .breadcrumb a:hover { color: white; }
        .breadcrumb .sep { font-size: 0.7rem; }
        .breadcrumb .current { color: white; font-weight: 600; }

        /* متن درباره ما */
        .section { padding: 80px 0; }
        .bg-white { background: white; }

        .about-content-grid {
            display: grid;
            align-items: start;
            background-color: #fff;
            padding: 15px;
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .about-content-grid:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.06);
            background-color: #fff;
            border: 2px solid #c5a8a8;
        }
        
        .about-text-section h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .about-text-section p {
            color: var(--text-muted);
            margin-bottom: 16px;
            text-align: justify;
        }
        .about-features { margin-top: 30px; }
        .about-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--text-main);
            font-size: 0.95rem;
        }
        .about-features li i { color: var(--accent); margin-top: 5px; flex-shrink: 0; }

        .about-image-block { position: relative; }
        .about-image-block img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: 420px;
            object-fit: cover;
        }
        .about-image-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--accent);
            color: white;
            padding: 20px 28px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        .about-image-badge .number {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1;
            display: block;
        }
        .about-image-badge .label {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-top: 4px;
            display: block;
        }

        /* فان فکت‌ها */
        .funfacts-section {
            background: var(--primary);
            padding: 60px 0;
        }
        .funfacts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .funfact-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: var(--radius);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }
        .funfact-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }
        .funfact-icon {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: rgba(59,130,246,0.2);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin: 0 auto 16px;
        }
        .funfact-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 6px;
        }
        .funfact-label { color: #94a3b8; font-size: 0.9rem; }

        /* کارت‌های تیم */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 30px;
        }
        /*.team-card {*/
        /*    background: white;*/
        /*    border: 1px solid var(--border);*/
        /*    border-radius: var(--radius);*/
        /*    overflow: hidden;*/
        /*    transition: all 0.3s ease;*/
        /*}*/
        /*.team-card:hover {*/
        /*    transform: translateY(-6px);*/
        /*    box-shadow: var(--shadow-lg);*/
        /*    border-color: var(--accent);*/
        /*}*/
        .team-card {
            margin-bottom: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }
        
        .team-card:hover {
            transform: translateY(-15px);
            z-index: 10;
        }
        
        /* ========== ریسپانسیو ========== */
        @media (max-width: 768px) {
            .team-card {
                margin-bottom: 20px;
            }
            
            .team-card:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 576px) {
            .team-card {
                margin-bottom: 15px;
            }
            
            .team-card:hover {
                transform: translateY(-8px);
            }
        }
        .team-card-img-wrap {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        .team-card-img-wrap img {
            width: 100%; height: 100%;
            transition: transform 0.5s ease;
        }
        .team-card-img-wrap img { transform: scale(1.05); }
        .team-card-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
            pointer-events: none;
        }
        .team-card-body { padding: 24px; text-align: center; }
        .team-card-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }
        .team-card-role {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 18px;
            display: block;
        }
        .team-card-socials {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 18px;
        }
        .team-card-socials a {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        .team-card-socials a:hover { background: var(--accent); color: white; }
        .btn-view-profile { width: 100%; padding: 10px; font-size: 0.9rem; }

        /* ریسپانسیو */
        @media (max-width: 1024px) {
            .funfacts-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .about-hero { height: 360px; }
            .about-hero-text h1 { font-size: 2rem; }
            .about-content-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-image-block { order: -1; }
            .about-image-badge { left: auto; right: 16px; bottom: -16px; }
            .funfacts-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .funfact-number { font-size: 1.8rem; }
            .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
        }
        @media (max-width: 480px) {
            .funfacts-grid { grid-template-columns: 1fr; }
            .about-hero { height: 300px; }
            .about-hero-text h1 { font-size: 1.6rem; }
        }


        /* ===== بخش تیم در صفحه درباره ما ===== */

        /* بخش عکس تیم */
        .team-img-wrapper {
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: #f8f9fa;
            position: relative;
            border-radius: 15px;
        }

        .team-img {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .custom-card:hover .team-img {
            transform: scale(1.08);
        }

        /* محتوای کارت تیم */
        .custom-card .card-body {
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            text-align: center;
        }

        .custom-card .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .team-role {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: block;
        }

        .custom-card .btn {
            margin-top: auto;
            transition: all 0.3s ease;
            width: 100%;
            padding: 10px;
        }

        .custom-card .btn:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        /* کارت‌های تیم در صفحه درباره ما */
        #team-section .custom-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        #team-section .custom-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        /* واکنش‌گرایی */
        @media (max-width: 992px) {
            .team-img-wrapper {
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            .team-img-wrapper {
                height: 200px;
            }
            
            .custom-card .card-body {
                padding: 20px 16px;
            }
            
            .custom-card .card-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .team-img-wrapper {
                height: 180px;
            }
            
            .custom-card .card-body {
                padding: 16px 12px;
            }
            
            .custom-card .card-title {
                font-size: 1rem;
            }
            
            .team-role {
                font-size: 0.85rem;
            }
        }
