
        /* ============================================
           PAGE HEADER (بنر درباره ما)
           ============================================ */
        .page-header {
            background: linear-gradient(135deg, #0a1428 0%, #1a2a4a 50%, #0a1428 100%);
            padding: 8rem 0 4rem;
            margin-top: 56px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 30%, rgba(241, 196, 15, 0.05) 0%, transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .page-header .header-content {
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(4px);
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(255,255,255,0.1);
            color: #9ca3af;
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }

        .page-header .breadcrumb-custom a {
            color: #f1c40f;
            text-decoration: none;
            transition: color 0.2s;
        }

        .page-header .breadcrumb-custom a:hover {
            color: #e5b800;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            line-height: 1.3;
        }

        .page-header h1 span {
            color: #f1c40f;
        }

        .page-header p {
            font-size: 1.1rem;
            color: #d1d5db;
            max-width: 600px;
            margin-top: 0.5rem;
        }

        @media (min-width: 576px) {
            .page-header h1 {
                font-size: 3rem;
            }
        }

        @media (min-width: 992px) {
            .page-header h1 {
                font-size: 3.5rem;
            }
            .page-header {
                padding: 10rem 0 5rem;
            }
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about-section {
            padding: 4rem 0;
        }

        @media (min-width: 992px) {
            .about-section {
                padding: 6rem 0;
            }
        }

        .about-section .about-image {
            border-radius: 1.5rem;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .about-section .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
            transition: transform 0.6s ease;
        }

        .about-section .about-image:hover img {
            transform: scale(1.03);
        }

        .about-section .about-image .experience-badge {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            background: rgba(10, 20, 40, 0.85);
            backdrop-filter: blur(8px);
            padding: 0.75rem 1.5rem;
            border-radius: 1rem;
            border: 1px solid rgba(241, 196, 15, 0.3);
            color: white;
            text-align: center;
        }

        .about-section .about-image .experience-badge .number {
            font-size: 2rem;
            font-weight: 800;
            color: #f1c40f;
            display: block;
            line-height: 1;
        }

        .about-section .about-image .experience-badge .label {
            font-size: 0.7rem;
            color: #9ca3af;
        }

        .about-section .about-content {
            padding-right: 0;
        }

        @media (min-width: 992px) {
            .about-section .about-content {
                padding-right: 3rem;
            }
        }

        .about-section .about-content .section-label {
            display: inline-block;
            background: rgba(241, 196, 15, 0.1);
            color: #f1c40f;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .about-section .about-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #0a1428;
            margin-bottom: 1rem;
        }

        .about-section .about-content h2 span {
            color: #f1c40f;
        }

        @media (min-width: 992px) {
            .about-section .about-content h2 {
                font-size: 2.5rem;
            }
        }

        .about-section .about-content p {
            color: #6b7280;
            line-height: 1.9;
            margin-bottom: 1rem;
        }

        .about-section .about-content .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .about-section .about-content .about-features .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: #f9fafb;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
        }

        .about-section .about-content .about-features .feature-item:hover {
            background: rgba(241, 196, 15, 0.08);
            transform: translateX(-4px);
        }

        .about-section .about-content .about-features .feature-item i {
            color: #f1c40f;
            font-size: 0.9rem;
            width: 1.5rem;
        }

        .about-section .about-content .about-features .feature-item span {
            font-size: 0.8rem;
            font-weight: 500;
            color: #1f2937;
        }

        /* ============================================
           VALUES SECTION
           ============================================ */
        .values-section {
            padding: 4rem 0;
            background: #f9fafb;
        }

        @media (min-width: 992px) {
            .values-section {
                padding: 6rem 0;
            }
        }

        .values-section .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .values-section .section-header .section-label {
            display: inline-block;
            background: rgba(241, 196, 15, 0.1);
            color: #f1c40f;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .values-section .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #0a1428;
        }

        .values-section .section-header h2 span {
            color: #f1c40f;
        }

        .values-section .section-header p {
            color: #6b7280;
            max-width: 600px;
            margin: 0.5rem auto 0;
        }

        @media (min-width: 992px) {
            .values-section .section-header h2 {
                font-size: 2.5rem;
            }
        }

        .value-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 1.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid #f3f4f6;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f1c40f, #e5b800);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border-color: rgba(241, 196, 15, 0.2);
        }

        .value-card .icon-wrapper {
            width: 4.5rem;
            height: 4.5rem;
            background: rgba(241, 196, 15, 0.08);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.4s ease;
        }

        .value-card:hover .icon-wrapper {
            background: #f1c40f;
            transform: scale(1.05) rotate(-5deg);
        }

        .value-card .icon-wrapper i {
            font-size: 2rem;
            color: #f1c40f;
            transition: all 0.4s ease;
        }

        .value-card:hover .icon-wrapper i {
            color: #0a1428;
        }

        .value-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0a1428;
            margin-bottom: 0.5rem;
        }

        .value-card p {
            font-size: 0.85rem;
            color: #6b7280;
            line-height: 1.7;
            margin: 0;
        }

        /* ============================================
           BRANCH ACCORDION - استایل شعب
           ============================================ */
        .branch-accordion {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid #f3f4f6;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }

        .branch-accordion:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }

        .branch-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            border-bottom: 1px solid transparent;
            user-select: none;
        }

        .branch-header:hover {
            /*background: #f9fafb;*/
        }

        .branch-header .branch-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .branch-header .branch-info .branch-icon {
            width: 3rem;
            height: 3rem;
            background: rgba(241, 196, 15, 0.1);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f1c40f;
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .branch-accordion.active .branch-header .branch-info .branch-icon {
            background: #f1c40f;
            color: #0a1428;
        }

        .branch-header .branch-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0a1428;
            margin: 0;
        }

        .branch-header .branch-info p {
            font-size: 0.8rem;
            color: #6b7280;
            margin: 0;
        }

        .branch-header .branch-toggle {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .branch-header .branch-toggle .branch-count {
            font-size: 0.75rem;
            font-weight: 600;
            color: #0a1428;
            background: #f3f4f6;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
        }

        .branch-header .branch-toggle i {
            color: #6b7280;
            transition: transform 0.3s ease;
            font-size: 1rem;
        }

        .branch-header .branch-toggle i.rotated {
            transform: rotate(180deg);
            color: #f1c40f;
        }

        .branch-body {
            padding: 0 1.5rem 1.5rem;
            display: none;
            animation: branchSlideDown 0.4s ease;
        }

        .branch-body.open {
            display: block;
        }

        @keyframes branchSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .branch-accordion.active .branch-header {
            background: #f9fafb;
            border-bottom-color: rgba(241, 196, 15, 0.1);
        }

        /* ============================================
           TEAM SECTION
           ============================================ */
        .team-section {
            padding: 4rem 0;
        }

        @media (min-width: 992px) {
            .team-section {
                padding: 6rem 0;
            }
        }

        .team-section .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .team-section .section-header .section-label {
            display: inline-block;
            background: rgba(241, 196, 15, 0.1);
            color: #f1c40f;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .team-section .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #0a1428;
        }

        .team-section .section-header h2 span {
            color: #f1c40f;
        }

        .team-section .section-header p {
            color: #6b7280;
            max-width: 600px;
            margin: 0.5rem auto 0;
        }

        @media (min-width: 992px) {
            .team-section .section-header h2 {
                font-size: 2.5rem;
            }
        }

        .team-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid #f3f4f6;
            height: 100%;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border-color: rgba(241, 196, 15, 0.2);
        }

        .team-card .team-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .team-card .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-card .team-image .social-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 20, 40, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .team-image .social-overlay {
            opacity: 1;
        }

        .team-card .team-image .social-overlay a {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a1428;
            text-decoration: none;
            transition: all 0.3s ease;
            transform: translateY(10px);
            opacity: 0;
        }

        .team-card:hover .team-image .social-overlay a {
            transform: translateY(0);
            opacity: 1;
        }

        .team-card .team-image .social-overlay a:nth-child(1) { transition-delay: 0.05s; }
        .team-card .team-image .social-overlay a:nth-child(2) { transition-delay: 0.1s; }
        .team-card .team-image .social-overlay a:nth-child(3) { transition-delay: 0.15s; }

        .team-card .team-image .social-overlay a:hover {
            background: #f1c40f;
            transform: translateY(0) scale(1.1);
        }

        .team-card .team-info {
            padding: 1.5rem;
        }

        .team-card .team-info h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0a1428;
            margin-bottom: 0.25rem;
        }

        .team-card .team-info .position {
            font-size: 0.8rem;
            color: #f1c40f;
            font-weight: 500;
        }

        .team-card .team-info .bio {
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 0.5rem;
            line-height: 1.6;
        }

        .badge-expert {
            display: inline-block;
            background: rgba(241, 196, 15, 0.1);
            color: #f1c40f;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 9999px;
            margin-top: 0.5rem;
            border: 1px solid rgba(241, 196, 15, 0.15);
        }

        /* ============================================
           STATS - ABOUT PAGE
           ============================================ */
        .stats-about {
            background: #0a1428;
            padding: 3rem 0;
            color: white;
        }

        @media (min-width: 992px) {
            .stats-about {
                padding: 4rem 0;
            }
        }

        .stats-about .stat-item {
            text-align: center;
        }

        .stats-about .stat-item .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #f1c40f;
            display: block;
            line-height: 1;
        }

        .stats-about .stat-item .label {
            font-size: 0.85rem;
            color: #9ca3af;
            margin-top: 0.25rem;
        }

        @media (min-width: 992px) {
            .stats-about .stat-item .number {
                font-size: 3.5rem;
            }
        }

