/* Grille des services 2x2 */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.services-row {
    width: 100%;
}

.services-3d-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-3d {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.service-card-3d:hover::before {
    left: 100%;
}

.card-content h3 {
    color: #2563eb;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-cta {
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .services-3d-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .service-card-3d {
        padding: 30px 20px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
}