    .service-hero {
        background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
        padding: 5rem 0;
        color: white;
        margin-bottom: 3rem;
    }
    
    .service-content {
        background: var(--bg-card);
        border-radius: 1.5rem;
        box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.08);
        overflow: hidden;
    }
    
    .price-badge {
        font-size: 1.75rem;
        font-weight: 800;
        padding: 1rem 1.5rem;
        border-radius: 1rem;
        display: inline-block;
    }
    
    .feature-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--bs-border-color);
    }
    
    .feature-list li:last-child {
        border-bottom: none;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid rgba(99, 102, 241, 0.25);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .timeline {
        position: relative;
        padding-left: 2rem;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--bs-primary);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -2.5rem;
        top: 0.5rem;
        width: 1rem;
        height: 1rem;
        background: var(--bs-primary);
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 0 0 3px var(--bs-primary);
    }
    
    .related-service-card {
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        overflow: hidden;
        height: 100%;
        background: var(--bg-card);
        color: var(--text-primary);
    }
    
    .related-service-card:hover {
        transform: translateY(-5px);
        border-color: var(--bs-primary);
        box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.1);
    }
    
    .floating-order-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1000;
        box-shadow: 0 0.5rem 1.5rem rgba(var(--bs-primary-rgb), 0.3);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0); }
        100% { box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0); }
    }
    
    @media (max-width: 768px) {
        .service-hero {
            padding: 3rem 0;
        }
        
        .floating-order-btn {
            bottom: 1rem;
            right: 1rem;
            left: 1rem;
        }
    }