/* Enhanced Services Section Styles */
.services-enhanced {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.services-header h6 {
    display: inline-block;
    padding: 8px 16px;
    background: #A1AEBB;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #222;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.services-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    padding: 25px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0369A1;
    border-radius: 12px;
    margin-right: 15px;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.service-title p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0369A1, #0284c7);
    border-radius: 50%;
}

.service-badge i {
    font-size: 14px;
    color: #fff;
}

.service-content {
    padding: 25px;
}

.service-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 25px;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.service-feature:last-child {
    margin-bottom: 0;
}

.service-feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 105, 161, 0.1);
    border-radius: 50%;
    margin-right: 12px;
}

.service-feature-icon i {
    font-size: 12px;
    color: #0369A1;
}

.service-feature-text {
    font-size: 14px;
    color: #444;
}

.service-action {
    margin-top: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #0369A1;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #0284c7;
    transform: translateY(-3px);
}

.service-btn i {
    margin-left: 8px;
    font-size: 18px;
}

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

@media (max-width: 768px) {
    .services-enhanced {
        padding: 70px 0;
    }
    
    .services-header h2 {
        font-size: 30px;
    }
    
    .services-header p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-enhanced {
        padding: 50px 0;
    }
    
    .services-header {
        margin-bottom: 30px;
    }
    
    .services-header h2 {
        font-size: 26px;
    }
}