/* Service Page Specific Styles */
.bg-success-soft {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.bg-warning-soft {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Page Header */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Check Icons */
.fa-check-circle {
    font-size: 1.2rem;
}

/* Buttons */
.btn-success {
    background: #10b981;
    border: none;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-warning {
    background: #f59e0b;
    border: none;
    color: white;
}

.btn-warning:hover {
    background: #d97706;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px !important;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
}