/* SEO Services Page - Missing Section Styles */

/* Success Story Section */
.success-story-section {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.dark-theme .success-story-section {
    background: var(--dark-bg);
}

.success-story-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.success-title .highlight {
    background: linear-gradient(90deg, #4361ee 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.metric {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dark-theme .metric {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px -3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-theme .metric:hover {
    box-shadow: 
        0 10px 25px -3px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(67, 97, 238, 0.1);
}

.metric-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.success-cta {
    margin-top: 32px;
}

.success-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
}

.success-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(67, 97, 238, 0.4);
    text-decoration: none;
    color: white;
}

.success-project-btn svg {
    width: 16px;
    height: 16px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.dark-theme .process-section {
    background: #1e293b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.dark-theme .process-step {
    background: #334155;
    border-color: #475569;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.dark-theme .step-title {
    color: #f1f5f9;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.dark-theme .step-description {
    color: #cbd5e1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .success-story-section {
        padding: 60px 0;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .process-section {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }
    
    .process-step {
        padding: 32px 24px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}
