/* درباره ما - هیرو بخش */
.about-hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 184, 148, 0.05) 0%, 
        rgba(9, 132, 227, 0.05) 100%);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-3d-container {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, 
        rgba(0, 184, 148, 0.1), 
        rgba(9, 132, 227, 0.1));
}

.three-model {
    width: 100%;
    height: 100%;
}

.about-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.about-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.about-content {
    animation: fadeInRight 1s ease-out;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(223, 230, 233, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 120px;
    color: var(--bg-primary);
    transform: rotate(180deg);
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

/* تیم ما */
.team-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    perspective: 1000px;
    height: 380px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-image,
.team-info {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-image {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.team-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.team-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    fill: var(--primary-color);
}

.team-info {
    background: var(--bg-primary);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(223, 230, 233, 0.5);
    box-shadow: var(--shadow-md);
}

.team-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ارزش‌های ما */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 184, 148, 0.03) 0%, 
        rgba(9, 132, 227, 0.03) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(223, 230, 233, 0.3);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, 
        var(--primary-color), 
        var(--secondary-color));
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
    transform: translateY(0);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(0, 184, 148, 0.1), 
        rgba(9, 132, 227, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color));
    transform: scale(1.1);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
    fill: white;
}

.value-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* انیمیشن‌ها */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* رسپانسیو */
@media (max-width: 1200px) {
    .about-hero {
        gap: 3rem;
    }
    
    .about-3d-container {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-3d-container {
        height: 350px;
        order: 2;
    }
    
    .about-content {
        order: 1;
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-3d-container {
        height: 300px;
    }
    
    .about-logo img {
        width: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        height: 320px;
    }
    
    .team-image img {
        width: 150px;
        height: 150px;
    }
}