/* Services Page Specific Styles */

.services-detailed {
    padding: 6rem 2rem;
}

.service-detail {
    margin-bottom: 8rem;
    scroll-margin-top: 100px;
}

.service-detail.featured {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 30px;
    padding: 4rem 2rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge.featured {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white);
    border: none;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features-list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-features-list h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-features-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 50%;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tech-badge {
    padding: 10px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.visual-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    margin: 0 auto;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
}

.visual-stat i {
    font-size: 2rem;
    color: var(--accent);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: center;
}

.process-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(0, 217, 255, 0.2);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .service-detail {
        margin-bottom: 5rem;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
}
