/* Services Page Styles */

/* Page Header */
.services-header {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 16px 0;
}

.services-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Content */
.services-content {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

/* Service Category */
.service-category {
    margin-bottom: 100px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.category-info p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 12px 40px rgba(0, 255, 213, 0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* CTA Section */
.cta-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 60px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-content h2 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.cta-content .btn {
    background: white;
    color: #4F46E5;
}

.cta-content .btn:hover {
    background: var(--accent-cyan);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--primary);
    border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header {
        padding: 120px 0 40px;
    }
    
    .services-header h1 {
        font-size: 2.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .category-icon {
        margin: 0 auto;
    }
    
    .category-info h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-wrapper {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}