/* Services New Section Styles */
.services-new-section {
    background: #f8f9fa;
    padding: 0;
    margin: 0;
}

.services-new-section .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 100px 20px;
}

.services-new-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-new-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;
}

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

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

.services-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-new-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-new-image-card {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.service-new-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-new-card:hover .service-new-card-image {
    transform: scale(1.05);
}

.service-new-card-content {
    padding: 20px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-new-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-new-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary, #1abdb8);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb, 26, 189, 184), 0.15);
}

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

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

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

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

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

@media (max-width: 480px) {
    .services-new-section .container {
        padding: 50px 20px;
    }
    
    .services-new-title {
        font-size: 20px;
    }
    
    .services-new-subtitle {
        font-size: 14px;
    }
    
    .service-new-image-card {
        height: 260px;
    }
    
    .service-new-card-image {
        border-radius: 10px;
    }
}

