/* ========================================
   Services Page Specific Styles
======================================== */

.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e7f1ff 100%);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Service Detail Section */
.service-detail-section {
    scroll-margin-top: 100px;
}

.service-image-wrapper {
    position: relative;
}

.service-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.service-badge i {
    font-size: 2.5rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
}

.service-content {
    position: relative;
}

.service-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 100px;
    font-weight: 700;
    color: rgba(13, 110, 253, 0.08);
    line-height: 1;
    z-index: -1;
}

.service-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Service Process */
.process-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.process-card:hover .process-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.process-card:hover .process-icon i {
    color: white;
}

/* Industries Section */
.industry-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.industry-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.industry-card:hover i {
    transform: scale(1.1);
}

.industry-card h5 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Advantage List */
.advantage-list {
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advantage-icon {
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 2.5rem;
}

.advantage-item h6 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
}

.stat-item:hover * {
    color: white !important;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:hover .stat-icon i {
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-number {
        font-size: 60px;
    }
    
    .service-detail-section {
        margin-bottom: 3rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .service-badge {
        width: 60px;
        height: 60px;
        bottom: 10px;
        right: 10px;
    }
    
    .service-badge i {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-card {
        margin-bottom: 1rem;
    }
}

/* Animation Enhancements */
.service-image-wrapper img {
    transition: var(--transition);
}

.service-detail-section:hover .service-image-wrapper img {
    transform: scale(1.02);
}

/* CTA Enhancement */
.cta-section .btn {
    box-shadow: var(--shadow);
}

.cta-section .btn:hover {
    box-shadow: var(--shadow-lg);
}