/* فونت Vazir */
@font-face {
    font-family: 'Vazir';
    src: url('/content/fonts/Vazir-Black.woff2');
    font-display: swap;
}

/* متغیرهای CSS */
:root {
    --primary-color: #0072ff;
    --secondary-color: #00c6ff;
    --accent-color: #6a11cb;
    --dark-color: #0a0e17;
    --light-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 114, 255, 0.15);
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
    --transition: all 0.3s ease;
    --border-radius: 80px;
    --border-radius-sm: 40px;
}

/* Reset و فونت */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
          outline: none;
  scroll-behavior: smooth;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
    font-family: 'Vazir', system-ui, -apple-system, sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 114, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(106, 17, 203, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* دکمه بازگشت به صفحه اصلی */
.back-to-home {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    corner-shape: squircle;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.back-btn:hover {
    background: rgba(0, 198, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.back-btn .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* دکمه‌های عمومی */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    corner-shape: squircle;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--secondary-color);
}

.btn-text {
    background: transparent;
    color: var(--text-color);
    border: none;
}

.btn-text:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* هیروی صفحه درباره ما */
.about-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 114, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.hero-stat .stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: 20%;
    left: 10%;
}

/* داستان ما */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.story-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 1rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    fill: var(--secondary-color);
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-box {
    width: 100%;
    max-width: 400px;
}

.team-visual {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

/* اعضای تیم - نسخه مینیمال */
.team-section {
    padding: 80px 0;
    background: rgba(10, 14, 23, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.3);
}

/* عکس پروفایل گرد */
.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(0, 198, 255, 0.2);
}

.avatar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
}

.avatar-icon {
    width: 60%;
    height: 60%;
    opacity: 0.8;
}

/* رنگ‌های مختلف برای پروفایل‌ها */
.team-card[data-member="ali"] .avatar-bg {
    background: var(--primary-color);
}

.team-card[data-member="sara"] .avatar-bg {
    background: var(--secondary-color);
}

.team-card[data-member="reza"] .avatar-bg {
    background: var(--accent-color);
}

.team-card[data-member="fatemeh"] .avatar-bg {
    background: #ff3366;
}

/* اطلاعات عضو تیم */
.team-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.team-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 15px 0;
}

.skill-tag {
    background: rgba(0, 198, 255, 0.08);
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(0, 198, 255, 0.15);
    transition: var(--transition);
}

.team-card:hover .skill-tag {
    background: rgba(0, 198, 255, 0.15);
    border-color: var(--secondary-color);
}

.team-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.team-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
}

/* ارزش‌های ما */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    corner-shape: squircle;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA پایانی */
.about-cta {
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 114, 255, 0.05);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* تلگرام */
.telegram-contact {
    margin: 30px 0;
}

.telegram-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    corner-shape: squircle;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 500px;
    transition: var(--transition);
}

.telegram-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.2);
}

.telegram-icon {
    width: 40px;
    height: 40px;
    fill: #0088cc;
    flex-shrink: 0;
}

.telegram-info {
    flex: 1;
    text-align: right;
}

.telegram-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.telegram-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* دکمه بازگشت به بالا */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateY(20px);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

.scroll-to-top-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/* نوتیفیکیشن */
.notification {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    corner-shape: squircle;
    color: white;
    font-weight: 500;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 14px;
}

.notification.success {
    background: rgba(0, 200, 83, 0.9);
}

.notification.error {
    background: rgba(244, 67, 54, 0.9);
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* اسکرول بار */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 14, 23, 0.8);
    border-left: 1px solid rgba(0, 198, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        #00c6ff, 
        #0072ff);
    border-radius: var(--border-radius);
    corner-shape: squircle;
    border: 2px solid rgba(10, 14, 23, 0.9);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        #00d2ff, 
        #0088ff);
}

/* ریسپانسیو */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-features {
        align-items: center;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .telegram-info {
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .back-to-home {
        top: 15px;
        right: 15px;
    }
    
    .back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(0, 198, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        #00c6ff, 
        #0072ff);
    border-radius: 6px;
    border: 2px solid rgba(10, 14, 23, 0.9);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        #00d2ff, 
        #0088ff);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
}
* {
    scrollbar-width: thin;
    scrollbar-color: #0072ff rgba(10, 14, 23, 0.8);
}
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
}