/* Process Section - فرآیند کار */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.step-icon {
    font-size: 3rem;
    color: #667eea;
    margin: 1.5rem 0 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.step-desc {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
    animation: slideLeft 1.5s ease-in-out infinite;
}

@keyframes slideLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    color: rgba(102,126,234,0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.15);
}

.testimonial-avatar {
    font-size: 4rem;
    color: #667eea;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-rating {
    text-align: center;
    color: #f6ad55;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.testimonial-position {
    color: #718096;
    font-size: 0.9rem;
}

/* Brands Section */
.brands-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.brands-slider {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    animation: scrollBrands 20s linear infinite;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands-slider:hover {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 200px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.brand-logo {
    text-align: center;
    color: white;
}

.brand-logo i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.brand-logo span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102,126,234,0.2) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
    color: white;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid white;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px) scale(1.05);
}

/* SEO Content Section */
.seo-content-section {
    padding: 5rem 0;
    background: #ffffff;
}

.seo-article {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.seo-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
}

.seo-subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 1rem;
}

.seo-subheading::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.seo-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-text strong {
    color: #2d3748;
    font-weight: 700;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.seo-list li {
    font-size: 1.05rem;
    line-height: 2;
    color: #4a5568;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.seo-list li:last-child {
    border-bottom: none;
}

.seo-list li strong {
    color: #667eea;
}

.keywords-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
    border-radius: 12px;
    border-right: 4px solid #667eea;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a5568;
}

.keywords-footer strong {
    color: #667eea;
    font-size: 1.1rem;
}

/* Responsive */
@@media (max-width: 991.98px) {
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@@media (max-width: 576px) {
    .process-step {
        min-width: 100%;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .btn-cta,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .seo-content-section {
        padding: 3rem 0;
    }
    
    .seo-article {
        padding: 2rem 1.5rem;
    }
    
    .seo-heading {
        font-size: 1.5rem;
    }
    
    .seo-subheading {
        font-size: 1.2rem;
    }
    
    .seo-text {
        font-size: 0.95rem;
        text-align: right;
    }
    
    .seo-list li {
        font-size: 0.95rem;
    }
}

