/* Service Pages Styles */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.2), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2), transparent 50%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Details */
.service-details {
    padding: 80px 0;
}

.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.service-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.service-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Grid */
.service-features {
    margin-bottom: 80px;
}

.service-features h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    color: var(--text-lighter);
    line-height: 1.6;
}

/* Process Steps */
.service-process {
    margin-bottom: 80px;
}

.service-process h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(to left, transparent, rgba(139, 92, 246, 0.3));
}

.process-step:last-child::after {
    display: none;
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: white;
}

.process-step p {
    color: var(--text-lighter);
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 60px 40px;
}

.service-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.service-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Service Specific Colors */
.service-software .service-title {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-software .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-enterprise .service-title {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-enterprise .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.service-ecommerce .service-title {
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-ecommerce .feature-icon {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.service-digital .service-title {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-digital .feature-icon {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

/* Responsive */
@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}