/* Service Steps Section Styles */
.service-steps-section {
    background: #ffffff;
    padding: 100px 20px;
    margin: 0;
}

.service-steps-section .container {
    max-width: 1450px;
    margin: 0 auto;
}

.service-steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-steps-badge {
    display: inline-block;
    background: var(--primary, #1abdb8);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-steps-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.service-steps-subtitle {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #1abdb8) 0%, rgba(var(--primary-rgb, 26, 189, 184), 0.8) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary, #1abdb8);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb, 26, 189, 184), 0.15);
}

.service-step-card:hover::before {
    transform: scaleX(1);
}

.service-step-header {
    margin-bottom: 16px;
}

.service-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary, #1abdb8) 0%, rgba(var(--primary-rgb, 26, 189, 184), 0.9) 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb, 26, 189, 184), 0.25);
}

.service-step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.service-step-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-steps-section {
        padding: 80px 20px;
    }
    
    .service-steps-header {
        margin-bottom: 40px;
    }
    
    .service-steps-title {
        font-size: 22px;
    }
    
    .service-steps-subtitle {
        font-size: 14px;
    }
    
    .service-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-step-card {
        border-radius: 16px;
        padding: 24px 20px;
    }
    
    .service-step-title {
        font-size: 17px;
    }
    
    .service-step-description {
        font-size: 14px;
    }
    
    .service-step-number {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service-steps-section {
        padding: 50px 20px;
    }
    
    .service-steps-title {
        font-size: 20px;
    }
    
    .service-steps-subtitle {
        font-size: 14px;
    }
}
